[enh] themes static content refactor

This commit is contained in:
Adam Tauber
2015-01-01 17:48:12 +01:00
parent e3957d6adf
commit 9f12605f7e
184 changed files with 19 additions and 10 deletions
@@ -0,0 +1,9 @@
// Hide element if checkbox is checked
input[type=checkbox]:checked ~ .label_hide_if_checked {
display:none;
}
// Hide element if checkbox is not checked
input[type=checkbox]:not(:checked) ~ .label_hide_if_not_checked {
display:none;
}