Ticket #48709: 48709.diff
File 48709.diff, 989 bytes (added by , 4 years ago) |
---|
-
src/wp-admin/css/colors/_mixins.scss
39 39 &:disabled, 40 40 &.button-primary-disabled, 41 41 &.disabled { 42 color: hsl( hue( $button-color ), 10%, 80% )!important;42 color: $button-disabled-color !important; 43 43 background: darken( $button-color, 8% ) !important; 44 44 border-color: darken( $button-color, 8% ) !important; 45 45 text-shadow: none !important; -
src/wp-admin/css/colors/_variables.scss
19 19 20 20 $button-color: $highlight-color !default; 21 21 $button-text-color: $text-color !default; 22 $button-disabled-color: rgba($text-color, 0.5) !default; 22 23 23 24 $form-checked: #7e8993 !default; 24 25