Theming: Cleanup and remove opacity from checkbox/radiobutton
This commit is contained in:
parent
1f3e55bc86
commit
4eb85f10a9
|
@ -57,8 +57,7 @@ function preview(setting, value) {
|
|||
var headerClass = document.getElementById('header');
|
||||
var expandDisplayNameClass = document.getElementById('expandDisplayName');
|
||||
var headerAppName = headerClass.getElementsByClassName('header-appname')[0];
|
||||
var textColor, elementColor, icon;
|
||||
|
||||
var textColor, icon;
|
||||
var luminance = calculateLuminance(value);
|
||||
var elementColor = value;
|
||||
|
||||
|
|
|
@ -93,7 +93,6 @@ input[type="checkbox"].checkbox + label:before {
|
|||
vertical-align: middle;
|
||||
|
||||
background: url('../img/actions/checkbox.svg') left top no-repeat;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
input[type="checkbox"].checkbox:disabled +label:before { opacity: .6; }
|
||||
|
@ -167,7 +166,6 @@ input[type="radio"].radio + label:before {
|
|||
vertical-align: middle;
|
||||
|
||||
background: url('../img/actions/radio.svg') left top no-repeat;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
input[type="radio"].radio:checked + label:before {
|
||||
|
|
Loading…
Reference in New Issue