diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-09-26 21:18:45 +0200 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 14:40:46 +0200 |
| commit | afcfa04e30af048c63d12bdbe3e281582a917b91 (patch) | |
| tree | eb861d129242b7fdef1cd92e41169c631827959c /searx/static | |
| parent | 8c6e63402ae304fc4aa889911ee20f48ea4d9a09 (diff) | |
oscar template: improve style for check and uncheck of engines
Diffstat (limited to 'searx/static')
| -rw-r--r-- | searx/static/oscar/css/oscar.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/searx/static/oscar/css/oscar.css b/searx/static/oscar/css/oscar.css index 6ca390679..4ff475e89 100644 --- a/searx/static/oscar/css/oscar.css +++ b/searx/static/oscar/css/oscar.css @@ -17,3 +17,11 @@ body { /* Set the fixed height of the footer here */ height: 40px; } + +input[type=checkbox]:checked ~ .label_hide_if_checked { + display:none; +} + +input[type=checkbox]:not(:checked) ~ .label_hide_if_not_checked { + display:none; +} |