button[disabled], button.disabled, .btn[disabled], .btn.disabled {
pointer-events: none;
- opacity: .5;
+ opacity: .6;
}
.cbi-button-apply, .cbi-button-positive {
background: var(--danger-color);
}
+.cbi-checkbox input[type="checkbox"][disabled] + label::before,
+.cbi-checkbox input[type="checkbox"][disabled] + label::after {
+ pointer-events: none;
+ opacity: .6;
+}
+
input:not([type]),
input[type="text"],
input[type="password"],
border-color: var(--main-dark-color);
}
+input[disabled]:not([type]),
+input[disabled][type="text"],
+input[disabled][type="password"],
+select[disabled] {
+ opacity: .6;
+ pointer-events: none;
+}
+
input:not([type]) + .btn, input:not([type]) + button,
input[type="text"] + .btn, input[type="text"] + button,
input[type="password"] + .btn, input[type="password"] + button {