Changeset 22289
- Timestamp:
- 10/24/2012 01:33:59 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/ie.css
r22263 r22289 238 238 } 239 239 240 button, 241 input[type="reset"], 242 input[type="button"], 243 input[type="submit"] { 244 padding: 2px 8px; 245 } 246 247 button.button-large, 248 input[type="reset"].button-large, 249 input[type="button"].button-large, 250 input[type="submit"].button-large { 251 padding: 4px 12px; 252 } 253 254 button.button-small, 255 input[type="reset"].button-small, 256 input[type="button"].button-small, 257 input[type="submit"].button-small { 258 padding: 0 8px; 259 } 260 240 261 a.button { 241 line-height: 1.4em;242 262 margin: 1px; 243 padding: 2px 6px; 263 padding: 3px 8px; 264 } 265 266 a.button.button-small { 267 padding: 1px 8px; 244 268 } 245 269 -
trunk/wp-includes/css/buttons.css
r22288 r22289 43 43 text-decoration: none; 44 44 font-size: 12px; 45 line-height: 17px; 46 height: 15px; 45 line-height: 1.45em; 47 46 margin: 0; 48 padding: 0.25em 0.85em 0.35em;47 padding: 3px 10px; 49 48 cursor: pointer; 50 49 border-width: 1px; … … 52 51 -webkit-border-radius: 3px; 53 52 border-radius: 3px; 54 -webkit-box-sizing: content-box;55 -moz-box-sizing: content-box;56 box-sizing: content-box;57 53 white-space: nowrap; 54 -webkit-box-sizing: border-box; 55 -moz-box-sizing: border-box; 56 box-sizing: border-box; 57 } 58 59 /* Remove the dotted border on :focus and the extra padding in Firefox */ 60 button::-moz-focus-inner, 61 input[type="reset"]::-moz-focus-inner, 62 input[type="button"]::-moz-focus-inner, 63 input[type="submit"]::-moz-focus-inner { 64 border: 1px solid transparent; 65 padding: 0; 58 66 } 59 67 60 68 .button.button-large, 61 69 .button-group.button-large .button { 62 padding: 0.4em 1.0em 0.5em;70 padding: 5px 12px; 63 71 } 64 72 65 73 .button.button-small, 66 74 .button-group.button-small .button { 67 padding: 0.15em 0.75em 0.17em;75 padding: 2px 8px; 68 76 } 69 77
Note: See TracChangeset
for help on using the changeset viewer.