diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-15 17:05:44 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-15 17:05:44 +0100 |
| commit | c5599e3c7c790ac2674b68f99919c0ec284327a3 (patch) | |
| tree | de5f0d91028f99d9c01135a17affd40dba6db502 /searx/static/themes/oscar/less | |
| parent | a85be122751cc774c2d028aa10162b25081e6642 (diff) | |
| parent | de6064994ef4854ccfb960947398f7b0cd565030 (diff) | |
Merge pull request #174 from pointhi/nojs_fix
add no javascript support to oscar-template
Diffstat (limited to 'searx/static/themes/oscar/less')
| -rw-r--r-- | searx/static/themes/oscar/less/oscar/checkbox.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/static/themes/oscar/less/oscar/checkbox.less b/searx/static/themes/oscar/less/oscar/checkbox.less index 712e53d49..6428b36ed 100644 --- a/searx/static/themes/oscar/less/oscar/checkbox.less +++ b/searx/static/themes/oscar/less/oscar/checkbox.less @@ -1,9 +1,9 @@ // Hide element if checkbox is checked -input[type=checkbox]:checked ~ .label_hide_if_checked { +input[type=checkbox]:checked + .label_hide_if_checked, input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked { display:none; } // Hide element if checkbox is not checked -input[type=checkbox]:not(:checked) ~ .label_hide_if_not_checked { +input[type=checkbox]:not(:checked) + .label_hide_if_not_checked, input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked { display:none; } |