diff --git a/gui/black/assets/css/theme.css b/gui/black/assets/css/theme.css index ae3e56525..52588ade8 100644 --- a/gui/black/assets/css/theme.css +++ b/gui/black/assets/css/theme.css @@ -277,3 +277,17 @@ code.ng-binding{ .reception { filter: invert(77%) sepia(0%) saturate(724%) hue-rotate(146deg) brightness(91%) contrast(85%); } + +/* Disabled checkbox panels */ + +.checkbox[disabled] { + background-color: #222222; +} + +.checkbox[disabled] * { + color: #666666; +} + +.checkbox[disabled] .help-block { + color: #666666 !important; +} diff --git a/gui/dark/assets/css/theme.css b/gui/dark/assets/css/theme.css index 0876bb08a..a3ac43dbf 100644 --- a/gui/dark/assets/css/theme.css +++ b/gui/dark/assets/css/theme.css @@ -289,3 +289,17 @@ code.ng-binding{ .reception { filter: invert(77%) sepia(0%) saturate(724%) hue-rotate(146deg) brightness(91%) contrast(85%); } + +/* Disabled checkbox panels */ + +.checkbox[disabled] { + background-color: #3B3B3B; +} + +.checkbox[disabled] * { + color: #999999; +} + +.checkbox[disabled] .help-block { + color: #999999 !important; +}