• Anyone know how I can raise a trac about getting a change made in wp-admin.css?

    Specifically:

    #wpcontent select {
    padding: 2px;
    height: 2em;
    font-size: 11px;
    }

    is causing problems in that if you try to develop an admin page that has a multi-line Select in it then the height: 2em; limits the heigh of the box so you only get one line visible.

    To fix it it needs changing to:

    #wpcontent select {
    padding: 2px;
    font-size: 11px;
    }

    Now there might be a good reason for that height being in there but without it I’ve not been able to find any problems in the back end.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘wp-admin.css’ is closed to new replies.