Make WordPress Core

Changeset 22780


Ignore:
Timestamp:
11/21/2012 06:00:18 PM (12 years ago)
Author:
koopersmith
Message:

Media: Add base form element CSS. props lessbloat. see #22284, #21390.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/css/media-views.css

    r22739 r22780  
    1313    line-height: 28px;
    1414    margin-top: 3px;
     15}
     16
     17.media-modal {
     18    font-family: sans-serif;
     19}
     20
     21input[type="text"],
     22input[type="password"],
     23input[type="number"],
     24input[type="search"],
     25input[type="email"],
     26input[type="url"],
     27textarea,
     28select {
     29    -moz-box-sizing: border-box;
     30    -webkit-box-sizing: border-box;
     31    -ms-box-sizing: border-box; /* ie8 only */
     32    box-sizing: border-box;
     33    -webkit-border-radius: 3px;
     34    border-radius: 3px;
     35    border-width: 1px;
     36    border-style: solid;
     37    border-color: #dfdfdf;
     38}
     39
     40input[type="search"] {
     41    -webkit-appearance: textfield;
    1542}
    1643
     
    209236    min-width: 30%;
    210237    margin-right: 4%;
     238    font-size: 12px;
    211239}
    212240
     
    434462    margin: 0 10px 20px;
    435463    color: #464646;
     464    list-style: none;
    436465
    437466    -webkit-user-select: none;
Note: See TracChangeset for help on using the changeset viewer.