Ticket #47477: 47477.diff
| File 47477.diff, 3.5 KB (added by , 7 years ago) |
|---|
-
src/wp-admin/css/forms.css
64 64 65 65 /* Vertically align the number selector with the input. */ 66 66 input[type="number"] { 67 height: 28px;67 min-height: 28px; 68 68 line-height: 1; 69 69 } 70 70 … … 125 125 display: inline-block; 126 126 vertical-align: middle; 127 127 width: 16px; 128 font: normal 21px/1 dashicons;129 128 speak: none; 130 129 -webkit-font-smoothing: antialiased; 131 130 -moz-osx-font-smoothing: grayscale; … … 132 131 } 133 132 134 133 input[type="checkbox"]:checked:before { 135 content: "\f147";134 content: url( ./images/dashicons-yes.svg ); 136 135 margin: -3px 0 0 -4px; 137 color: #1e8cbe; 136 height: 21px; 137 width: 21px; 138 138 } 139 139 140 140 input[type="radio"]:checked:before { … … 141 141 content: "\2022"; 142 142 text-indent: -9999px; 143 143 border-radius: 50px; 144 font -size: 24px;144 font: normal 24px/1 dashicons; 145 145 width: 6px; 146 146 height: 6px; 147 147 margin: 4px; … … 311 311 .wp-admin select { 312 312 padding: 2px; 313 313 line-height: 2; 314 height: 28px;314 min-height: 28px; 315 315 vertical-align: middle; 316 316 } 317 317 … … 1252 1252 } 1253 1253 1254 1254 input[type="number"] { 1255 height: 40px;1255 min-height: 40px; 1256 1256 } 1257 1257 1258 1258 input.code { … … 1306 1306 } 1307 1307 1308 1308 #wpbody select { 1309 height: 36px;1309 min-height: 36px; 1310 1310 font-size: 16px; 1311 -webkit-appearance: menulist-button; 1311 1312 } 1312 1313 1313 1314 .wp-admin .button-cancel { … … 1376 1377 } 1377 1378 1378 1379 #wpbody .form-table td select { 1379 height: 40px;1380 min-height: 40px; 1380 1381 } 1381 1382 1382 1383 input[type="text"].small-text, -
src/wp-admin/images/dashicons-yes.svg
1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><rect x="0" fill="none" width="20" height="20"/><g><path d="M14.83 4.89l1.34.94-5.81 8.38H9.02L5.78 9.67l1.34-1.25 2.57 2.4z" fill="#1e8cbe" /></g></svg> 2 No newline at end of file -
src/wp-includes/css/buttons.css
47 47 text-decoration: none; 48 48 font-size: 13px; 49 49 line-height: 2; 50 height: 28px;50 min-height: 28px; 51 51 margin: 0; 52 52 padding: 0 10px 1px; 53 53 cursor: pointer; … … 71 71 72 72 .wp-core-ui .button.button-large, 73 73 .wp-core-ui .button-group.button-large .button { 74 height: 30px;74 min-height: 30px; 75 75 line-height: 2.15384615; 76 76 padding: 0 12px 2px; 77 77 } … … 78 78 79 79 .wp-core-ui .button.button-small, 80 80 .wp-core-ui .button-group.button-small .button { 81 height: 24px;81 min-height: 24px; 82 82 line-height: 2; 83 83 padding: 0 8px 1px; 84 84 font-size: 11px; … … 87 87 .wp-core-ui .button.button-hero, 88 88 .wp-core-ui .button-group.button-hero .button { 89 89 font-size: 14px; 90 height: 46px;90 min-height: 46px; 91 91 line-height: 3.14285714; 92 92 padding: 0 36px; 93 93 } … … 355 355 356 356 #media-upload.wp-core-ui .button { 357 357 padding: 0 10px 1px; 358 height: 24px;358 min-height: 24px; 359 359 line-height: 22px; 360 360 font-size: 13px; 361 361 } … … 376 376 padding: 0 10px 1px; 377 377 font-size: 13px; 378 378 line-height: 2; 379 height: 28px;379 min-height: 28px; 380 380 margin: 0; 381 381 vertical-align: inherit; 382 382 } … … 389 389 /* Reset responsive styles on Log in button on iframed login form */ 390 390 391 391 .interim-login .button.button-large { 392 height: 30px;392 min-height: 30px; 393 393 line-height: 2; 394 394 padding: 0 12px 2px; 395 395 }