Ticket #59733: 59733.2.diff
File 59733.2.diff, 2.3 KB (added by , 17 months ago) |
---|
-
src/wp-admin/css/forms.css
22 22 resize: vertical; 23 23 } 24 24 25 label {26 cursor: pointer;27 }28 29 25 input, 30 26 select { 31 27 margin: 0 1px; … … 287 283 288 284 input[type="file"]:disabled, 289 285 input[type="file"].disabled, 286 input[type="file"][aria-disabled="true"], 290 287 input[type="range"]:disabled, 291 input[type="range"].disabled { 288 input[type="range"].disabled, 289 input[type="range"][aria-disabled="true"] { 292 290 background: none; 293 291 box-shadow: none; 294 292 cursor: default; … … 296 294 297 295 input[type="checkbox"]:disabled, 298 296 input[type="checkbox"].disabled, 297 input[type="checkbox"][aria-disabled="true"], 299 298 input[type="radio"]:disabled, 300 299 input[type="radio"].disabled, 300 input[type="radio"][aria-disabled="true"], 301 301 input[type="checkbox"]:disabled:checked:before, 302 302 input[type="checkbox"].disabled:checked:before, 303 303 input[type="radio"]:disabled:checked:before, 304 304 input[type="radio"].disabled:checked:before { 305 305 opacity: 0.7; 306 cursor: default; 306 307 } 307 308 308 309 /*------------------------------------------------------------------------------ … … 356 357 transform: none; 357 358 } 358 359 360 .wp-core-ui select[aria-disabled="true"] { 361 cursor: default; 362 } 363 359 364 /* Reset Firefox inner outline that appears on :focus. */ 360 365 /* This ruleset overrides the color change on :focus thus needs to be after select:focus. */ 361 366 .wp-core-ui select:-moz-focusring { -
src/wp-includes/css/buttons.css
185 185 transform: none !important; 186 186 } 187 187 188 .wp-core-ui .button[aria-disabled="true"], 189 .wp-core-ui .button-secondary[aria-disabled="true"] { 190 cursor: default; 191 } 192 188 193 /* Buttons that look like links, for a cross of good semantics with the visual */ 189 194 .wp-core-ui .button-link { 190 195 margin: 0; … … 283 288 cursor: default; 284 289 } 285 290 291 .wp-core-ui .button-primary[aria-disabled="true"] { 292 cursor: default; 293 } 294 286 295 /* ---------------------------------------------------------------------------- 287 296 4.0 - Button Groups 288 297 ---------------------------------------------------------------------------- */