diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-03-09 16:34:25 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-03-09 16:34:25 +0100 |
commit | 7c3fb06267191adc38a946445d30136fa64817c1 (patch) | |
tree | bf5937799ffd8f85807b2f017304f38fb49aa14e /view/theme/redbasic/css | |
parent | aff75888326e8f3ff2b9fbb91d653c7857940e6b (diff) | |
download | volse-hubzilla-7c3fb06267191adc38a946445d30136fa64817c1.tar.gz volse-hubzilla-7c3fb06267191adc38a946445d30136fa64817c1.tar.bz2 volse-hubzilla-7c3fb06267191adc38a946445d30136fa64817c1.zip |
some more hover magic for field checkbox
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 576eba5f6..60acb1974 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2297,17 +2297,21 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { display: none; } -.field.checkbox:hover label { - color: $link_colour; -} - .field.checkbox > div label { display: block; overflow: hidden; cursor: pointer; border: 1px solid #ccc; - border-radius: 5px; + border-radius: 4px; margin:0px; } +.field.checkbox:hover label { + color: $link_colour; +} + +.field.checkbox:hover > div label { + border: 1px solid $link_colour;; +} + .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s; |