Only apply color to checked element

This commit is contained in:
Flavio Copes
2015-08-07 18:01:38 +02:00
parent f8b6539a3d
commit c5b63e8081
3 changed files with 3 additions and 3 deletions

View File

@@ -1475,7 +1475,7 @@ tr {
display: none !important; } display: none !important; }
/* Fix for toggleables elements when disabled */ /* Fix for toggleables elements when disabled */
#blueprints input[type=radio].highlight + label { #blueprints input[type=radio].highlight:checked + label {
background-color: #41bea8; background-color: #41bea8;
color: white; } color: white; }

File diff suppressed because one or more lines are too long

View File

@@ -213,7 +213,7 @@
} }
/* Fix for toggleables elements when disabled */ /* Fix for toggleables elements when disabled */
#blueprints input[type=radio].highlight + label { #blueprints input[type=radio].highlight:checked + label {
background-color: rgb(65, 190, 168); background-color: rgb(65, 190, 168);
color: white; color: white;
} }