diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-03-08 21:28:58 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-03-08 21:28:58 +0100 |
commit | 9e6d85b4ea3e04c605f71b22121053c6562a7c3e (patch) | |
tree | aad8e55b67dcf9f2839d310459f08e5656ba996b /view/theme | |
parent | 3298b4a0cbb93d83665c411fd4f8dac267bb006e (diff) | |
download | volse-hubzilla-9e6d85b4ea3e04c605f71b22121053c6562a7c3e.tar.gz volse-hubzilla-9e6d85b4ea3e04c605f71b22121053c6562a7c3e.tar.bz2 volse-hubzilla-9e6d85b4ea3e04c605f71b22121053c6562a7c3e.zip |
add hover effect to checkbox field
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2dca3c428..576eba5f6 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2297,6 +2297,10 @@ 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; @@ -2319,6 +2323,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { content: attr(data-on); padding-right: 21px; background-color: $item_colour; + color: $font_colour; text-align: right; } |