Ticket #47153: 47153.8.diff
File 47153.8.diff, 1.6 KB (added by , 5 years ago) |
---|
-
src/wp-admin/css/login.css
83 83 box-shadow: none; 84 84 font-size: 14px; 85 85 line-height: 2; 86 height: auto; 86 width: 2.5rem; 87 height: 2.5rem; 87 88 margin: 0; 88 89 padding: 5px 9px; 89 90 position: absolute; … … 97 98 98 99 .login .button.wp-hide-pw:focus { 99 100 background: transparent; 100 border-color: #5b9dd9; 101 box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); 101 border-color: #007cba; 102 box-shadow: 0 0 0 1px #007cba; 103 /* Only visible in Windows High Contrast mode */ 104 outline: 2px solid transparent; 102 105 } 103 106 104 107 .login .button.wp-hide-pw:active { … … 108 111 } 109 112 110 113 .login .button.wp-hide-pw .dashicons { 111 top: 4px; 114 width: 1.25rem; 115 height: 1.25rem; 116 top: 0.25rem; 112 117 } 113 118 114 119 .login .wp-pwd { … … 273 278 .login input[type="text"], 274 279 .login input[type="password"] { 275 280 font-size: 24px; 281 line-height: 1.16666666; 276 282 width: 100%; 277 padding: 5px; 283 border-width: 0.0625rem; 284 padding: 0.3125rem; 278 285 margin: 3px 6px 16px 0; 286 max-height: none; 279 287 } 280 288 281 289 .js.login input.password-input, 282 290 .js.login-action-rp form .input, 283 291 .js.login-action-rp input[type="text"] { 284 padding-right: 45px;292 padding-right: 2.5rem; 285 293 } 286 294 287 295 .login form .input, … … 350 358 padding: 20px 0; 351 359 } 352 360 } 353 354 @media screen and (max-width: 782px) {355 .interim-login input[type=checkbox] {356 height: 16px;357 width: 16px;358 }359 360 .interim-login input[type=checkbox]:checked:before {361 width: 16px;362 font: normal 21px/1 dashicons;363 margin: -3px 0 0 -4px;364 }365 }