Ticket #27173: 27173.5.diff
File 27173.5.diff, 1.3 KB (added by , 11 years ago) |
---|
-
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 transition: .5s border cubic-bezier( 0.25, 1.0 , 0.5, 1.0 ); /* Do not bounce when fading out of focus, and use this function for browsers that do not allow "bouncing." */ 38 39 } 39 40 40 41 input[type="radio"]:checked + label:before { … … 214 215 box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 215 216 background-color: #fff; 216 217 color: #333; 218 transition: .5s border cubic-bezier( 0.25, 1.0 , 0.5, 1.0 ); /* Do not bounce when fading out of focus, and use this function for browsers that do not allow "bouncing." */ 217 219 } 218 220 219 221 select[disabled] { … … 220 222 color: #7f7f7f; 221 223 } 222 224 223 select:focus {224 border-color: #aaa;225 }226 227 225 textarea:focus, 228 226 input[type="text"]:focus, 229 227 input[type="password"]:focus, … … 238 236 border-color: #999; 239 237 -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1); 240 238 box-shadow: 0 1px 2px rgba(0,0,0,0.1); 239 transition: .5s border cubic-bezier( 0.2, 2.5, 0.75, 2.5 ); /* Use timing-function values larger than 1 to achieve "bounce" effect. */ 241 240 } 242 241 243 242 input[readonly] {