Changeset 57520
- Timestamp:
- 02/02/2024 09:53:07 AM (14 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/forms.css
r56636 r57520 21 21 line-height: 1.42857143; /* 20px */ 22 22 resize: vertical; 23 }24 25 label {26 cursor: pointer;27 23 } 28 24 … … 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; … … 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, … … 304 304 input[type="radio"].disabled:checked:before { 305 305 opacity: 0.7; 306 cursor: default; 306 307 } 307 308 … … 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. */ -
trunk/src/wp-admin/css/install.css
r57363 r57520 71 71 padding: 0; 72 72 margin: 0; 73 }74 75 label {76 cursor: pointer;77 73 } 78 74 -
trunk/src/wp-includes/css/buttons.css
r56639 r57520 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 { … … 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
Note: See TracChangeset
for help on using the changeset viewer.