Ticket #27173: 27173.4.diff
File 27173.4.diff, 1.9 KB (added by , 11 years ago) |
---|
-
wp-admin/css/colors/_admin.scss
30 30 31 31 /* Forms */ 32 32 33 textarea:focus, 34 input[type="checkbox"]:focus, 35 input[type="radio"]:focus, 36 input[type="text"]:focus, 37 input[type="password"]:focus, 38 input[type="email"]:focus, 39 input[type="number"]:focus, 40 input[type="search"]:focus, 41 input[type="tel"]:focus, 42 input[type="url"]:focus, 43 select:focus { 44 border-color: $form-checked; 45 -webkit-box-shadow: 0 0 2px rgba( $form-checked, 0.8 ); 46 box-shadow: 0 0 2px rgba( $form-checked, 0.8 ); 47 } 48 33 49 input[type=checkbox]:checked:before { 34 50 color: $form-checked; 35 51 } 36 52 37 53 input[type=radio]:checked:before { 38 54 background: $form-checked; 39 55 } 40 56 41 57 .wp-core-ui input[type="reset"]:hover, -
wp-admin/css/forms.css
35 35 box-sizing: border-box; 36 36 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 37 37 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 38 -webkit-transition: .05s border-color ease-in-out; 39 transition: .05s border-color ease-in-out; 38 40 } 39 41 40 42 input[type="radio"]:checked + label:before { … … 214 216 box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 215 217 background-color: #fff; 216 218 color: #333; 219 -webkit-transition: .05s border-color ease-in-out; 220 transition: .05s border-color ease-in-out; 217 221 } 218 222 219 223 select[disabled] { … … 235 239 input[type="checkbox"]:focus, 236 240 input[type="radio"]:focus, 237 241 select:focus { 238 border-color: # 999;239 -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);240 box-shadow: 0 1px 2px rgba(0,0,0,0.1);242 border-color: #1e8cbe; 243 -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8); 244 box-shadow: 0 0 2px rgba(30,140,190,0.8); 241 245 } 242 246 243 247 input[readonly] {