Changeset 9408 for trunk/wp-admin/css/global.css
- Timestamp:
- 10/30/2008 03:03:00 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/global.css
r9396 r9408 1 /* http://meyerweb.com/eric/tools/css/reset/ */ 2 /* v1.0 | 20080212 */ 3 4 html, body, div, span, applet, object, iframe, 5 h1, h2, h3, h4, h5, h6, p, blockquote, pre, 6 a, abbr, acronym, address, big, cite, code, 7 del, dfn, em, font, img, ins, kbd, q, s, samp, 8 small, strike, strong, sub, sup, tt, var, 9 b, u, i, center, 10 dl, dt, dd, ol, ul, li, 11 fieldset, form, label, legend, 12 table, caption, tbody, tfoot, thead, tr, th, td { 13 margin: 0; 14 padding: 0; 15 border: 0; 16 outline: 0; 17 font-size: 100%; 18 vertical-align: baseline; 19 background: transparent; 20 } 21 body { 22 line-height: 1; 23 } 24 ol, ul { 25 list-style: none; 26 } 27 blockquote, q { 28 quotes: none; 29 } 30 blockquote:before, blockquote:after, 31 q:before, q:after { 32 content: ''; 33 content: none; 34 } 35 36 /* remember to define focus styles! */ 37 /* 38 :focus { 39 outline: 0; 40 } 41 */ 42 /* remember to highlight inserts somehow! */ 43 ins { 44 text-decoration: none; 45 } 46 del { 47 text-decoration: line-through; 48 } 49 50 /* tables still need 'cellspacing="0"' in the markup */ 51 table { 52 border-collapse: collapse; 53 border-spacing: 0; 54 } 55 /* end reset css */ 56 57 1 58 /* 2 column liquid layout */ 2 59 #wpwrap { … … 73 130 } 74 131 132 /* include margin and padding in the width calculation of input and textarea */ 133 input[type="text"], 134 textarea { 135 -moz-box-sizing: border-box; 136 -webkit-box-sizing: border-box; 137 -ms-box-sizing: border-box; /* ie8 only */ 138 box-sizing: border-box; 139 } 140 141 input[type="checkbox"], 142 input[type="radio"] { 143 vertical-align: text-top; 144 } 145 75 146 /* styles for use by people extending the WordPress interface */ 76 147 … … 84 155 } 85 156 86 form, label input { margin: 0; padding: 0; } 87 88 img { border: 0; } 89 90 label { cursor: pointer; } 91 92 li, dd { margin-bottom: 6px; } 93 94 p, li, dl, dd, dt { line-height: 140%; } 157 form, label input { 158 margin: 0; 159 padding: 0; 160 } 161 162 img { 163 border: 0; 164 } 165 166 label { 167 cursor: pointer; 168 } 169 170 li, dd { 171 margin-bottom: 6px; 172 } 173 174 p, li, dl, dd, dt { 175 line-height: 140%; 176 } 95 177 96 178 textarea, input, select { … … 98 180 margin: 1px; 99 181 padding: 3px; 100 border-width: 1px;101 border-style: solid;102 182 } 103 183 … … 206 286 -webkit-border-radius: 4px; 207 287 border-radius: 4px; 208 209 288 } 210 289
Note: See TracChangeset
for help on using the changeset viewer.