[wp-trac] [WordPress Trac] #11457: Heigh Parameter in wp-admin.css affects the use of multi line selects.
WordPress Trac
wp-trac at lists.automattic.com
Wed Dec 16 11:44:59 UTC 2009
#11457: Heigh Parameter in wp-admin.css affects the use of multi line selects.
--------------------------+-------------------------------------------------
Reporter: SteveAtty | Owner:
Type: defect (bug) | Status: new
Priority: low | Milestone: Unassigned
Component: UI | Version: 2.8.5
Severity: trivial | Keywords: css, select, multi line
--------------------------+-------------------------------------------------
Currently the wp-admin.css file contains:
{{{
#wpcontent select {
padding: 2px;
height: 2em;
font-size: 11px;
}
}}}
This means that the following code:
{{{
<select id="place_list" name="plid" size="10" multiple="multiple" style
="min-width:30em;
width:30em">
<option value="668u">Line 1</option><option value="o0v9">Line
2</option><option value="o0x1">Line 3</option></select>
}}}
Produces a single line select rather than a 10 line select with only 3
lines in it.
Changing the css file to:
{{{
#wpcontent select {
padding: 2px;
font-size: 11px;
}
}}}
Fixes this issue and does not seem to affect any other part of the admin
back end.
--
Ticket URL: <http://core.trac.wordpress.org/ticket/11457>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list