[wp-trac] [WordPress Trac] #26430: Toolbar: in small screens any plugin output breaks toolbar layout
WordPress Trac
noreply at wordpress.org
Fri Dec 6 15:37:28 UTC 2013
#26430: Toolbar: in small screens any plugin output breaks toolbar layout
--------------------------+----------------------------
Reporter: lancewillett | Owner: iammattthomas
Type: defect (bug) | Status: reopened
Priority: normal | Milestone: 3.8
Component: Toolbar | Version:
Severity: normal | Resolution:
Keywords: needs-patch |
--------------------------+----------------------------
Changes (by Jayjdk):
* status: closed => reopened
* resolution: fixed =>
Comment:
Replying to [comment:5 iammattthomas]:
> In [changeset:"26680"]:
> {{{
> #!CommitTicketReference repository="" revision="26680"
> Allow dropdown lists to appear in responsive states; reset the minimum
width of dropdowns at responsive sizes. See #26430.
> }}}
`intrinsic` is an old webkit value, the new one is `fit-content`
(https://developer.mozilla.org/en-US/docs/Web/CSS/width#Values).
`fit-content` will work in Firefox as well. Currently it requires vendor
prefixes (http://caniuse.com/#search=intrinsic)
{{{
#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
min-width: intrinsic;
min-width: -webkit-fit-content;
min-width: -moz-fit-content;
min-width: fit-content;
}
}}}
I've attached a patch.
--
Ticket URL: <http://core.trac.wordpress.org/ticket/26430#comment:8>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list