Ticket #47477: 47477.4.diff
File 47477.4.diff, 3.3 KB (added by , 4 years ago) |
---|
-
src/wp-admin/css/forms.css
309 309 310 310 /* Select styles are based on the default button in buttons.css */ 311 311 .wp-admin select { 312 font-size: 13px; 313 line-height: 1.4; 312 314 color: #555; 313 315 border-color: #7e8993; 314 316 box-shadow: none; 315 317 border-radius: 3px; 316 padding: 2px 24px 2px 8px;318 padding: 3px 24px 3px 8px; 317 319 min-height: 28px; 318 320 vertical-align: middle; 319 321 -webkit-appearance: none; 320 322 /* 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%;323 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 5px top 55%; 322 324 background-size: 16px 16px; 323 325 } 324 326 … … 340 342 box-shadow: none; 341 343 } 342 344 345 /* Reset Firefox inner outline that appears on :focus. */ 346 /* This ruleset overrides the color change on :focus thus needs to be after select:focus. */ 347 .wp-admin select:-moz-focusring { 348 color: transparent; 349 text-shadow: 0 0 0 #016087; 350 } 351 352 /* Remove background focus style from IE11 while keeping focus style available on option elements. */ 353 .wp-admin select::-ms-value { 354 background: transparent; 355 } 356 357 /* Hide the native down arrow for select element on IE. */ 358 .wp-admin select::-ms-expand { 359 display: none; 360 } 361 343 362 .wp-admin .button-cancel { 344 363 padding: 0 5px; 345 364 line-height: 2; … … 1333 1352 #wpbody select { 1334 1353 min-height: 36px; 1335 1354 font-size: 16px; 1355 padding: 5px 24px 5px 8px; 1336 1356 } 1337 1357 1338 1358 .wp-admin .button-cancel { -
src/wp-admin/css/list-tables.css
950 950 .inline-edit-row fieldset.inline-edit-date label { 951 951 display: inline-block; 952 952 margin: 0; 953 line-height: 1.5;954 953 vertical-align: baseline; 955 954 } 956 955 … … 975 974 padding: 0; 976 975 } 977 976 978 .inline-edit-row fieldset.inline-edit-date select {979 margin: 1px;980 line-height: 2;981 }982 983 977 .inline-edit-row fieldset label span.input-text-wrap, 984 978 .inline-edit-row fieldset .timestamp-wrap { 985 979 display: block; … … 1039 1033 1040 1034 .inline-edit-row fieldset input[name=jj], 1041 1035 .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 1036 .inline-edit-row fieldset input[name=mn], 1047 1037 .inline-edit-row fieldset input[name=aa] { 1048 1038 font-size: 12px; 1049 width: 3.5em; 1039 text-align: center; 1040 padding: 2px; 1050 1041 } 1051 1042 1052 1043 .inline-edit-row fieldset label input.inline-edit-password-input { … … 1988 1979 margin-left: 0; 1989 1980 } 1990 1981 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 1982 .inline-edit-row .inline-edit-or { 2002 1983 margin: 0 6px 0 0; 2003 1984 }