Ticket #47477: 47477.3-Darker-Borders.diff
File 47477.3-Darker-Borders.diff, 3.7 KB (added by , 4 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 … … 307 307 2.0 - Forms 308 308 ------------------------------------------------------------------------------*/ 309 309 310 310 /* Select styles are based on the default button in buttons.css */ 311 311 .wp-admin select { 312 padding: 2px; 313 line-height: 2; 314 height: 28px; 312 color: #555; 313 border-color: #7e8993; 314 box-shadow: none; 315 border-radius: 3px; 316 padding: 2px 24px 2px 8px; 317 min-height: 28px; 315 318 vertical-align: middle; 319 -webkit-appearance: none; 320 /* The SVG is arrow-down-alt2 from Dashicons. */ 321 background: #f7f7f7 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%; 322 background-size: 16px 16px; 316 323 } 317 324 325 .wp-admin select:hover { 326 background-color: #f3f5f6; 327 color: #007cba; 328 } 329 330 .wp-admin select:focus { 331 background-color: #f3f5f6; 332 border-color: #007cba; 333 color: #016087; 334 box-shadow: 0 0 0 1px #007cba; 335 } 336 337 .wp-admin select:active { 338 background-color: #eee; 339 border-color: #999; 340 box-shadow: none; 341 } 342 318 343 .wp-admin .button-cancel { 319 344 padding: 0 5px; 320 345 line-height: 2; … … 412 437 .tablenav .actions select { 413 438 float: left; 414 439 margin-right: 6px; 415 max-width: 200px;440 max-width: 12.5rem; 416 441 } 417 442 418 443 .ie8 .tablenav .actions select { 419 width: 155px;444 width: 9.6875rem; 420 445 } 421 446 422 447 .ie8 .tablenav .actions select#cat { 423 width: 200px;448 width: 12.5rem; 424 449 } 425 450 426 451 #timezone_string option { … … 1248 1273 } 1249 1274 1250 1275 input[type="number"] { 1251 height: 40px;1276 min-height: 40px; 1252 1277 } 1253 1278 1254 1279 input.code { … … 1302 1327 } 1303 1328 1304 1329 #wpbody select { 1305 height: 36px;1330 min-height: 36px; 1306 1331 font-size: 16px; 1307 1332 } 1308 1333 … … 1372 1397 } 1373 1398 1374 1399 #wpbody .form-table td select { 1375 height: 40px;1400 min-height: 40px; 1376 1401 } 1377 1402 1378 1403 input[type="text"].small-text, -
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 padding: 0 10px 1px;52 padding: 0 10px; 53 53 cursor: pointer; 54 54 border-width: 1px; 55 55 border-style: solid; … … 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 } … … 367 367 368 368 #media-upload.wp-core-ui .button { 369 369 padding: 0 10px 1px; 370 height: 24px;370 min-height: 24px; 371 371 line-height: 22px; 372 372 font-size: 13px; 373 373 } … … 388 388 padding: 0 10px 1px; 389 389 font-size: 13px; 390 390 line-height: 2; 391 height: 28px;391 min-height: 28px; 392 392 margin: 0; 393 393 vertical-align: inherit; 394 394 } … … 401 401 /* Reset responsive styles on Log in button on iframed login form */ 402 402 403 403 .interim-login .button.button-large { 404 height: 30px;404 min-height: 30px; 405 405 line-height: 2; 406 406 padding: 0 12px 2px; 407 407 }