Ticket #47477: 47477.8.diff
| File 47477.8.diff, 18.4 KB (added by , 6 years ago) |
|---|
-
src/wp-admin/css/common.css
775 775 border-bottom: 1px solid #ccd0d4; 776 776 } 777 777 778 .quicktags, 779 .search { 778 .quicktags { 780 779 background-color: #ccc; 781 780 color: #000; 782 781 font-size: 12px; … … 1080 1079 1081 1080 .wp-filter .search-form input[type="search"] { 1082 1081 margin: 0; 1083 padding: 3px 5px;1084 1082 width: 280px; 1085 1083 max-width: 100%; 1086 font-size: 16px;1087 font-weight: 300;1088 line-height: 1.5;1084 font-size: inherit; 1085 /* inherits font size 13px */ 1086 line-height: 2.15384615; /* 28px */ 1089 1087 } 1090 1088 1091 1089 .wp-filter .search-form select { 1092 1090 margin: 0; 1093 height: 32px;1094 vertical-align: top;1095 1091 } 1096 1092 1097 1093 .wp-filter .search-form.search-plugins { … … 3910 3906 3911 3907 .fileedit-sub input[type="submit"] { 3912 3908 margin-bottom: 0px; 3913 padding: 8px 18px;3909 padding: 4px 18px; 3914 3910 } 3915 3911 3916 3912 #documentation label[for="docs-list"] { -
src/wp-admin/css/edit.css
71 71 color: #72777c; 72 72 position: absolute; 73 73 font-size: 1.7em; 74 padding: 1 1px 10px;74 padding: 10px; 75 75 pointer-events: none; 76 76 } 77 77 … … 419 419 } 420 420 421 421 #timestampdiv select { 422 height: 21px;423 line-height: 1.16666666;424 padding: 0;425 422 vertical-align: top; 426 423 font-size: 12px; 424 line-height: 1.5; /* 18px */ 427 425 } 428 426 429 427 #aa, #jj, #hh, #mn { 430 padding: 1px;428 padding: 6px 1px; 431 429 font-size: 12px; 430 line-height: 1.16666666; /* 14px */ 432 431 } 433 432 434 433 #jj, #hh, #mn { … … 494 493 } 495 494 496 495 #timestampdiv input { 497 border-width: 1px;498 border-style: solid;499 496 text-align: center; 500 497 } 501 498 -
src/wp-admin/css/forms.css
1 1 /* Include margin and padding in the width calculation of input and textarea. */ 2 2 input, 3 textarea { 3 select, 4 textarea, 5 button { 4 6 box-sizing: border-box; 7 font-family: inherit; 8 font-size: inherit; 9 font-weight: inherit; 5 10 } 6 11 12 textarea, 13 input { 14 font-size: 14px; 15 } 16 17 textarea { 18 overflow: auto; 19 padding: 2px 6px; 20 /* inherits font size 14px */ 21 line-height: 1.42857143; /* 20px */ 22 resize: vertical; 23 } 24 25 label { 26 cursor: pointer; 27 } 28 29 input, 30 select { 31 margin: 1px; 32 } 33 34 textarea.code { 35 padding: 4px 6px 1px 6px; 36 } 37 7 38 input[type="text"], 8 39 input[type="password"], 9 input[type="checkbox"],10 40 input[type="color"], 11 41 input[type="date"], 12 42 input[type="datetime"], … … 15 45 input[type="month"], 16 46 input[type="number"], 17 47 input[type="search"], 18 input[type="radio"],19 48 input[type="tel"], 20 input[type="text"],21 49 input[type="time"], 22 50 input[type="url"], 23 51 input[type="week"], 24 52 select, 25 53 textarea { 26 padding: 6px 8px;27 54 box-shadow: 0 0 0 transparent; 28 transition: box-shadow 0.1s linear;29 55 border-radius: 4px; 30 56 border: 1px solid #7e8993; 31 57 background-color: #fff; 32 58 color: #32373c; 33 outline: none;34 59 } 35 60 61 input[type="text"], 62 input[type="password"], 63 input[type="date"], 64 input[type="datetime"], 65 input[type="datetime-local"], 66 input[type="email"], 67 input[type="month"], 68 input[type="number"], 69 input[type="search"], 70 input[type="tel"], 71 input[type="time"], 72 input[type="url"], 73 input[type="week"] { 74 padding: 0 8px; 75 /* inherits font size 14px */ 76 line-height: 2; /* 28px */ 77 } 78 79 ::-webkit-datetime-edit { 80 /* inherits font size 14px */ 81 line-height: 1.85714286; /* 26px */ 82 } 83 36 84 input[type="text"]:focus, 37 85 input[type="password"]:focus, 38 86 input[type="color"]:focus, … … 44 92 input[type="number"]:focus, 45 93 input[type="search"]:focus, 46 94 input[type="tel"]:focus, 47 input[type="text"]:focus,48 95 input[type="time"]:focus, 49 96 input[type="url"]:focus, 50 97 input[type="week"]:focus, … … 64 111 direction: ltr; 65 112 } 66 113 67 /* Vertically align the number selector with the input. */68 input[type="number"] {69 min-height: 28px;70 line-height: 1;71 }72 73 114 input[type="checkbox"], 74 115 input[type="radio"] { 75 116 border: 1px solid #7e8993; 117 border-radius: 4px; 76 118 background: #fff; 77 119 color: #555; 78 120 clear: none; … … 118 160 input[type="radio"] { 119 161 border-radius: 50%; 120 162 margin-right: 0.25rem; 163 /* 10px not sure if still necessary, comes from the MP6 redesign in r26072 */ 121 164 line-height: 0.71428571; 122 165 } 123 166 … … 146 189 width: 0.5rem; /* 8px */ 147 190 height: 0.5rem; /* 8px */ 148 191 margin: 0.1875rem; /* 3px */ 149 line-height: 0.76190476;150 192 background-color: #1e8cbe; 193 /* 16px not sure if still necessary, comes from the MP6 redesign in r26072 */ 194 line-height: 1.14285714; 151 195 } 152 196 153 197 @-moz-document url-prefix() { … … 167 211 display: none; 168 212 } 169 213 170 .ie8 input[type="password"] {171 font-family: sans-serif;172 }173 174 textarea,175 input,176 select,177 button {178 font-family: inherit;179 font-size: inherit;180 font-weight: inherit;181 }182 183 textarea,184 input,185 select {186 font-size: 14px;187 padding: 3px 5px;188 }189 190 textarea {191 overflow: auto;192 padding: 2px 6px;193 line-height: 1.4;194 resize: vertical;195 }196 197 214 .wp-admin input[type="file"] { 198 215 padding: 3px 0; 199 216 cursor: pointer; 200 217 } 201 218 202 label {203 cursor: pointer;204 }205 206 input,207 select {208 margin: 1px;209 padding: 3px 5px;210 }211 212 input.code {213 padding-top: 6px;214 }215 216 textarea.code {217 line-height: 1.4;218 padding: 4px 6px 1px 6px;219 }220 221 219 input.readonly, 222 220 input[readonly], 223 221 textarea.readonly, … … 309 307 310 308 /* Select styles are based on the default button in buttons.css */ 311 309 .wp-admin select { 312 color: #555; 310 font-size: 13px; 311 line-height: 1.38461538; /* 18px */ 312 color: #32373c; 313 313 border-color: #7e8993; 314 314 box-shadow: none; 315 315 border-radius: 3px; 316 padding: 2px 24px 2px 8px;316 padding: 3px 24px 3px 8px; 317 317 min-height: 28px; 318 318 vertical-align: middle; 319 319 -webkit-appearance: none; 320 320 /* The SVG is arrow-down-alt2 from Dashicons. */ 321 background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 4px top 50%;321 background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%; 322 322 background-size: 16px 16px; 323 cursor: pointer; 323 324 } 324 325 326 /* Color and font size in the core form tables. */ 327 .wp-admin .form-table select { 328 font-size: 14px; 329 line-height: 1.28571428; /* 18px */ 330 color: #32373c; 331 } 332 325 333 .wp-admin select:hover { 326 334 color: #007cba; 327 335 } … … 350 358 transform: none; 351 359 } 352 360 361 /* Reset Firefox inner outline that appears on :focus. */ 362 /* This ruleset overrides the color change on :focus thus needs to be after select:focus. */ 363 .wp-admin select:-moz-focusring { 364 color: transparent; 365 text-shadow: 0 0 0 #016087; 366 } 367 368 /* Remove background focus style from IE11 while keeping focus style available on option elements. */ 369 .wp-admin select::-ms-value { 370 background: transparent; 371 color: #555; 372 } 373 374 .wp-admin select:hover::-ms-value { 375 color: #007cba; 376 } 377 378 .wp-admin select:focus::-ms-value { 379 color: #016087; 380 } 381 382 .wp-admin select.disabled::-ms-value, 383 .wp-admin select:disabled::-ms-value { 384 color: #a0a5aa; 385 } 386 387 /* Hide the native down arrow for select element on IE. */ 388 .wp-admin select::-ms-expand { 389 display: none; 390 } 391 353 392 .wp-admin .button-cancel { 393 display: inline-block; 394 min-height: 28px; 354 395 padding: 0 5px; 355 396 line-height: 2; 356 397 } … … 359 400 max-width: 100%; 360 401 } 361 402 403 .misc-pub-post-status select { 404 margin-top: 0; 405 } 406 362 407 .wp-admin select[multiple] { 363 408 height: auto; 409 padding-right: 8px; 410 background: #fff; 364 411 } 365 412 366 413 .submit { … … 416 463 417 464 input.small-text { 418 465 width: 50px; 419 padding: 1px6px;466 padding: 0 6px; 420 467 } 421 468 422 469 input[type="number"].small-text { … … 450 497 max-width: 12.5rem; 451 498 } 452 499 453 .ie8 .tablenav .actions select {454 width: 9.6875rem;455 }456 457 .ie8 .tablenav .actions select#cat {458 width: 12.5rem;459 }460 461 500 #timezone_string option { 462 501 margin-left: 1em; 463 502 } … … 590 629 .tablenav .search-plugins input[name="s"], 591 630 .tagsdiv .newtag { 592 631 float: left; 593 height: 28px;594 632 margin: 0 4px 0 0; 595 633 } 596 634 … … 597 635 .js.plugins-php .search-box .wp-filter-search { 598 636 margin: 0; 599 637 width: 280px; 600 font-size: 16px;601 font-weight: 300;602 line-height: 1.5;603 padding: 3px 5px;604 height: 32px;605 638 } 606 639 607 640 input[type="text"].ui-autocomplete-loading, … … 952 985 953 986 .options-general-php input.small-text { 954 987 width: 56px; 988 margin: -2px 0; 955 989 } 956 990 957 991 .options-general-php .spinner { … … 1188 1222 } 1189 1223 1190 1224 .privacy_requests .next_steps .button { 1191 height: auto;1192 line-height: 1.5;1193 padding: 4px 10px;1194 1225 word-break: break-all; 1195 1226 white-space: unset; 1196 1227 } … … 1242 1273 } 1243 1274 1244 1275 .wp-privacy-request-form input { 1245 line-height: 1.5;1246 1276 margin: 0; 1247 1277 } 1248 1278 … … 1278 1308 } 1279 1309 1280 1310 input[type="text"], 1311 input[type="password"], 1312 input[type="date"], 1313 input[type="datetime"], 1314 input[type="datetime-local"], 1281 1315 input[type="email"], 1316 input[type="month"], 1317 input[type="number"], 1282 1318 input[type="search"], 1283 input[type="password"], 1284 input[type="number"] { 1319 input[type="tel"], 1320 input[type="time"], 1321 input[type="url"], 1322 input[type="week"] { 1285 1323 -webkit-appearance: none; 1286 padding: 6px 10px;1324 padding: 3px 10px; 1287 1325 } 1288 1326 1289 input[type="number"]{1290 min-height: 40px;1327 ::-webkit-datetime-edit { 1328 line-height: 1.875; /* 30px */ 1291 1329 } 1292 1330 1293 input.code {1294 padding-bottom: 5px;1295 padding-top: 10px;1296 }1297 1298 1331 input[type="checkbox"], 1299 1332 .widefat th input[type="checkbox"], 1300 1333 .widefat thead td input[type="checkbox"], … … 1340 1373 margin-top: 10px; 1341 1374 } 1342 1375 1343 #wpbody select { 1344 min-height: 36px; 1376 .wp-admin select, 1377 .wp-admin .form-table select { 1378 min-height: 40px; 1345 1379 font-size: 16px; 1380 line-height: 1.625; /* 26px */ 1381 padding: 5px 24px 5px 8px; 1346 1382 } 1347 1383 1348 1384 .wp-admin .button-cancel { 1349 padding: 0; 1385 margin-bottom: 0; 1386 padding: 2px 0; 1350 1387 font-size: 14px; 1388 vertical-align: middle; 1351 1389 } 1352 1390 1353 1391 #adduser .form-field input, … … 1397 1435 .form-table span.description, 1398 1436 #profile-page .form-table textarea { 1399 1437 width: 100%; 1400 font-size: 16px;1401 line-height: 1.5;1402 padding: 7px 10px;1403 1438 display: block; 1404 1439 max-width: none; 1405 1440 box-sizing: border-box; … … 1410 1445 margin: -30px 3px 0 0; 1411 1446 } 1412 1447 1413 #wpbody .form-table td select {1414 min-height: 40px;1415 }1416 1417 1448 input[type="text"].small-text, 1418 1449 input[type="search"].small-text, 1419 1450 input[type="password"].small-text, … … 1443 1474 } 1444 1475 1445 1476 p.search-box input[name="s"] { 1446 height: auto;1447 1477 float: none; 1448 1478 width: 100%; 1449 1479 margin-bottom: 10px; 1450 1480 vertical-align: middle; 1451 -webkit-appearance: none;1452 1481 } 1453 1482 1454 1483 p.search-box input[type="submit"] { … … 1550 1579 display: none; 1551 1580 } 1552 1581 1582 .wp-pwd [type="text"], 1583 .wp-pwd [type="password"] { 1584 line-height: 2; 1585 } 1586 1553 1587 .wp-cancel-pw .dashicons-no { 1554 1588 display: inline-block; 1555 1589 } -
src/wp-admin/css/list-tables.css
622 622 623 623 .tablenav-pages .current-page { 624 624 margin: 0 2px 0 0; 625 padding-top: 5px;626 padding-bottom: 5px;627 625 font-size: 13px; 628 626 text-align: center; 629 627 } … … 950 948 .inline-edit-row fieldset.inline-edit-date label { 951 949 display: inline-block; 952 950 margin: 0; 953 line-height: 1.5;954 951 vertical-align: baseline; 952 line-height: 2; 955 953 } 956 954 957 955 .inline-edit-row fieldset label.inline-edit-tags { … … 975 973 padding: 0; 976 974 } 977 975 978 .inline-edit-row fieldset.inline-edit-date select {979 margin: 1px;980 line-height: 2;981 }982 983 976 .inline-edit-row fieldset label span.input-text-wrap, 984 977 .inline-edit-row fieldset .timestamp-wrap { 985 978 display: block; … … 1039 1032 1040 1033 .inline-edit-row fieldset input[name=jj], 1041 1034 .inline-edit-row fieldset input[name=hh], 1042 .inline-edit-row fieldset input[name=mn] { 1043 font-size: 12px; 1044 width: 2.3em; 1045 } 1046 1035 .inline-edit-row fieldset input[name=mn], 1047 1036 .inline-edit-row fieldset input[name=aa] { 1048 1037 font-size: 12px; 1049 width: 3.5em; 1038 line-height: 1.16666666; 1039 vertical-align: middle; 1040 text-align: center; 1041 padding: 6px 4px; 1050 1042 } 1051 1043 1052 1044 .inline-edit-row fieldset label input.inline-edit-password-input { … … 1988 1980 margin-left: 0; 1989 1981 } 1990 1982 1991 .inline-edit-row fieldset input[name=jj],1992 .inline-edit-row fieldset input[name=hh],1993 .inline-edit-row fieldset input[name=mn] {1994 width: 3em;1995 }1996 1997 .inline-edit-row fieldset input[name=aa] {1998 width: 4.5em;1999 }2000 2001 1983 .inline-edit-row .inline-edit-or { 2002 1984 margin: 0 6px 0 0; 2003 1985 } -
src/wp-admin/css/login.css
273 273 .login input[type="text"], 274 274 .login input[type="password"] { 275 275 font-size: 24px; 276 line-height: 1.16666666; /* 28px */ 276 277 width: 100%; 277 278 padding: 5px; 278 279 margin: 3px 6px 16px 0; -
src/wp-admin/css/themes.css
34 34 left: 20px; 35 35 margin: 0; 36 36 width: 280px; 37 font-size: 16px;38 font-weight: 300;39 line-height: 1.5;40 37 } 41 38 42 39 /* Position admin messages */ -
src/wp-includes/css/buttons.css
80 80 .wp-core-ui .button-group.button-small .button { 81 81 min-height: 24px; 82 82 line-height: 2; 83 padding: 0 8px 1px;83 padding: 0 8px; 84 84 font-size: 11px; 85 85 } 86 86 … … 92 92 padding: 0 36px; 93 93 } 94 94 95 /* Only visible in Windows High Contrast mode */96 .wp-core-ui .button:active,97 .wp-core-ui .button:focus {98 outline: 2px solid transparent;99 /* Reset inherited offset from Gutenberg */100 outline-offset: 0;101 }102 103 95 .wp-core-ui .button.hidden { 104 96 display: none; 105 97 } … … 135 127 136 128 .wp-core-ui .button.hover, 137 129 .wp-core-ui .button:hover, 138 .wp-core-ui .button-secondary:hover, 139 .wp-core-ui .button.focus, 140 .wp-core-ui .button:focus, 141 .wp-core-ui .button-secondary:focus { 130 .wp-core-ui .button-secondary:hover{ 142 131 background: #f1f1f1; 143 132 border-color: #016087; 144 133 color: #016087; … … 151 140 border-color: #007cba; 152 141 color: #016087; 153 142 box-shadow: 0 0 0 1px #007cba; 143 /* Only visible in Windows High Contrast mode */ 144 outline: 2px solid transparent; 145 /* Reset inherited offset from Gutenberg */ 146 outline-offset: 0; 154 147 } 155 148 156 149 .wp-core-ui .button.active, … … 332 325 input#publish, 333 326 input#save-post, 334 327 a.preview { 335 padding: 6px 14px;336 line-height: normal;328 padding: 1px 14px; 329 line-height: 2; 337 330 font-size: 14px; 338 331 vertical-align: middle; 339 332 height: auto; -
src/wp-includes/css/editor.css
1509 1509 } 1510 1510 1511 1511 #wp-link .link-search-field { 1512 float: left;1513 1512 width: 250px; 1514 1513 max-width: 70%; 1515 1514 } … … 1520 1519 overflow: hidden; 1521 1520 } 1522 1521 1523 #wp-link .link-search-wrapper span {1524 float: left;1525 margin-top: 4px;1526 }1527 1528 1522 #wp-link .link-search-wrapper .spinner { 1529 margin-top: 5px; 1523 float: none; 1524 margin: -3px 0 0 4px; 1530 1525 } 1531 1526 1532 1527 #wp-link .link-target { … … 1553 1548 } 1554 1549 1555 1550 .has-text-field #wp-link .query-results { 1556 top: 2 00px;1551 top: 210px; 1557 1552 } 1558 1553 1559 1554 #wp-link li { … … 1781 1776 width: 300px; 1782 1777 padding: 3px; 1783 1778 box-sizing: border-box; 1779 line-height: 1.28571429; 1784 1780 } 1785 1781 1786 1782 .mce-toolbar div.wp-link-preview ~ .mce-btn, -
src/wp-includes/css/media-views.css
34 34 line-height: 1.2; 35 35 } 36 36 37 .media-frame input,38 .media-frame textarea {39 padding: 6px 8px;40 }41 42 .media-frame select,43 .wp-admin .media-frame select {44 min-height: 28px;45 vertical-align: middle;46 }47 48 37 .media-frame a { 49 38 border-bottom: none; 50 39 color: #0073aa; … … 77 66 color: #fff; 78 67 } 79 68 69 .media-frame input, 70 .media-frame textarea { 71 padding: 6px 8px; 72 } 73 74 .media-frame select, 75 .wp-admin .media-frame select { 76 min-height: 28px; 77 vertical-align: middle; 78 } 79 80 80 .media-frame input[type="text"], 81 81 .media-frame input[type="password"], 82 .media-frame input[type="color"], 83 .media-frame input[type="date"], 84 .media-frame input[type="datetime"], 85 .media-frame input[type="datetime-local"], 86 .media-frame input[type="email"], 87 .media-frame input[type="month"], 82 88 .media-frame input[type="number"], 83 89 .media-frame input[type="search"], 84 .media-frame input[type="email"], 90 .media-frame input[type="tel"], 91 .media-frame input[type="time"], 85 92 .media-frame input[type="url"], 93 .media-frame input[type="week"], 86 94 .media-frame textarea, 87 95 .media-frame select { 88 padding: 6px 8px;89 96 box-shadow: 0 0 0 transparent; 90 transition: box-shadow 0.1s linear;97 border-radius: 4px; 91 98 border: 1px solid #7e8993; 92 border-radius: 4px; 99 background-color: #fff; 100 color: #32373c; 93 101 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; 94 font-size: 1 2px;102 font-size: 13px; 95 103 } 96 104 105 .media-frame input[type="text"], 106 .media-frame input[type="password"], 107 .media-frame input[type="date"], 108 .media-frame input[type="datetime"], 109 .media-frame input[type="datetime-local"], 110 .media-frame input[type="email"], 111 .media-frame input[type="month"], 112 .media-frame input[type="number"], 113 .media-frame input[type="search"], 114 .media-frame input[type="tel"], 115 .media-frame input[type="time"], 116 .media-frame input[type="url"], 117 .media-frame input[type="week"] { 118 padding: 0 8px; 119 /* inherits font size 13px */ 120 line-height: 2.15384615; /* 28px */ 121 } 122 97 123 .media-frame input[type="text"]:focus, 98 124 .media-frame input[type="password"]:focus, 99 125 .media-frame input[type="number"]:focus, … … 807 833 * Search 808 834 */ 809 835 .media-frame .search { 810 margin-top: 1 1px;836 margin-top: 10px; 811 837 padding: 4px; 812 838 font-size: 13px; 813 839 color: #444; … … 1047 1073 display: block; 1048 1074 width: 100%; 1049 1075 margin: 0; 1050 padding: 8px;1076 padding: 0 8px; 1051 1077 font-size: 12px; 1052 1078 border-radius: 0; 1053 1079 } … … 1075 1101 .attachments-browser .media-toolbar-primary > .media-button-group, 1076 1102 .attachments-browser .media-toolbar-secondary > .media-button, 1077 1103 .attachments-browser .media-toolbar-secondary > .media-button-group { 1078 margin: 1 1px 0;1104 margin: 10px 0; 1079 1105 } 1080 1106 1081 1107 .attachments-browser .attachments {