Make WordPress Core

Ticket #59733: 59733.3.diff

File 59733.3.diff, 2.6 KB (added by afercia, 17 months ago)
  • src/wp-admin/css/forms.css

     
    2222        resize: vertical;
    2323}
    2424
    25 label {
    26         cursor: pointer;
    27 }
    28 
    2925input,
    3026select {
    3127        margin: 0 1px;
     
    287283
    288284input[type="file"]:disabled,
    289285input[type="file"].disabled,
     286input[type="file"][aria-disabled="true"],
    290287input[type="range"]:disabled,
    291 input[type="range"].disabled {
     288input[type="range"].disabled,
     289input[type="range"][aria-disabled="true"] {
    292290        background: none;
    293291        box-shadow: none;
    294292        cursor: default;
     
    296294
    297295input[type="checkbox"]:disabled,
    298296input[type="checkbox"].disabled,
     297input[type="checkbox"][aria-disabled="true"],
    299298input[type="radio"]:disabled,
    300299input[type="radio"].disabled,
     300input[type="radio"][aria-disabled="true"],
    301301input[type="checkbox"]:disabled:checked:before,
    302302input[type="checkbox"].disabled:checked:before,
    303303input[type="radio"]:disabled:checked:before,
    304304input[type="radio"].disabled:checked:before {
    305305        opacity: 0.7;
     306        cursor: default;
    306307}
    307308
    308309/*------------------------------------------------------------------------------
     
    356357        transform: none;
    357358}
    358359
     360.wp-core-ui select[aria-disabled="true"] {
     361        cursor: default;
     362}
     363
    359364/* Reset Firefox inner outline that appears on :focus. */
    360365/* This ruleset overrides the color change on :focus thus needs to be after select:focus. */
    361366.wp-core-ui select:-moz-focusring {
  • src/wp-admin/css/install.css

     
    7272        margin: 0;
    7373}
    7474
    75 label {
    76         cursor: pointer;
    77 }
    78 
    7975#logo {
    8076        margin: -130px auto 25px;
    8177        padding: 0 0 25px;
  • src/wp-includes/css/buttons.css

     
    185185        transform: none !important;
    186186}
    187187
     188.wp-core-ui .button[aria-disabled="true"],
     189.wp-core-ui .button-secondary[aria-disabled="true"] {
     190        cursor: default;
     191}
     192
    188193/* Buttons that look like links, for a cross of good semantics with the visual */
    189194.wp-core-ui .button-link {
    190195        margin: 0;
     
    283288        cursor: default;
    284289}
    285290
     291.wp-core-ui .button-primary[aria-disabled="true"] {
     292        cursor: default;
     293}
     294
    286295/* ----------------------------------------------------------------------------
    287296  4.0 - Button Groups
    288297---------------------------------------------------------------------------- */