diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-03-09 16:52:37 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-03-09 16:52:37 +0100 |
commit | 00d7ea90a20c82d0f42541d64fe9c5ad23f18d6e (patch) | |
tree | ad5b1760474510587cf129a882d5a160de94d113 | |
parent | 7c3fb06267191adc38a946445d30136fa64817c1 (diff) | |
download | volse-hubzilla-00d7ea90a20c82d0f42541d64fe9c5ad23f18d6e.tar.gz volse-hubzilla-00d7ea90a20c82d0f42541d64fe9c5ad23f18d6e.tar.bz2 volse-hubzilla-00d7ea90a20c82d0f42541d64fe9c5ad23f18d6e.zip |
add transition effect for border-color
-rw-r--r-- | view/theme/redbasic/css/style.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 60acb1974..e7ccfd19a 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2302,6 +2302,9 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { border: 1px solid #ccc; border-radius: 4px; margin:0px; + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .field.checkbox:hover label { @@ -2309,7 +2312,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { } .field.checkbox:hover > div label { - border: 1px solid $link_colour;; + border-color: $link_colour; } .onoffswitch-inner { |