customizer-dynamic-css.php (1830B)
1 <?php 2 return ' 3 /** Button styles **/ 4 .wp-core-ui .button-primary-disabled, 5 .wp-core-ui .button-primary.disabled, 6 .wp-core-ui .button-primary:disabled, 7 .wp-core-ui .button-primary[disabled] { 8 background: COLOR_ACCENT !important; 9 color: COLOR_ACCENT_TEXT !important; 10 border-color: rgba(0,0,0,.1) !important; 11 opacity: .7; 12 } 13 14 .wp-core-ui .button-primary { 15 background-color: COLOR_ACCENT; 16 color: COLOR_ACCENT_TEXT; 17 opacity: 1; 18 } 19 20 /** Tooltip styles **/ 21 #customize-controls .customize-info .customize-tooltip-toggle { 22 color: COLOR_ACCENT; 23 } 24 25 /** Image-Radio styles **/ 26 .customize-control-radio-image .image.ui-buttonset label.ui-state-active { 27 border: 2px solid COLOR_ACCENT 28 } 29 30 /** Radio-Buttonset styles **/ 31 .customize-control-radio-buttonset label.ui-state-active { 32 background-color: COLOR_ACCENT; 33 color: COLOR_ACCENT_TEXT; 34 } 35 36 /** Slider Controls **/ 37 .customize-control-slider input[type=range]::-webkit-slider-thumb, 38 .customize-control-slider input[type=range]::-webkit-slider-thumb, 39 .customize-control-slider input[type=range]::-moz-range-thumb, 40 .customize-control-slider input[type=range]::-ms-thumb, 41 .customize-control-slider .kirki_range_value { 42 background-color: COLOR_ACCENT !important; 43 } 44 45 /** Switch Controls **/ 46 .customize-control-switch .switch input:checked + label { 47 background: COLOR_ACCENT; 48 color: COLOR_ACCENT_TEXT 49 } 50 51 /** Toggle Controls **/ 52 .customize-control-toggle input:checked + .switch:after { 53 background: COLOR_ACCENT; 54 } 55 .customize-control-toggle input:checked + .switch { 56 background: COLOR_ACCENT_TEXT; 57 } 58 59 /** Sortable Controls **/ 60 .customize-control-sortable ul.ui-sortable li .dashicons.visibility { 61 color: COLOR_ACCENT; 62 } 63 64 /** Palette Controls **/ 65 .customize-control-palette label.ui-state-active.ui-button.ui-widget span.ui-button-text { 66 border-color: COLOR_ACCENT; 67 } 68 ';