diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-25 09:27:43 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-25 09:27:43 +0100 |
commit | fa43480b554676a7ace44e49d73e6c0d83f9185b (patch) | |
tree | 19931e30b505ce600cb32df099751c4ca31fabbf /core | |
parent | e188f0e4368ad1b34ecc35fcafa277f0e3946c01 (diff) | |
download | nextcloud-server-fa43480b554676a7ace44e49d73e6c0d83f9185b.tar.gz nextcloud-server-fa43480b554676a7ace44e49d73e6c0d83f9185b.zip |
highlight active user menu entry
Diffstat (limited to 'core')
-rw-r--r-- | core/css/header.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/core/css/header.css b/core/css/header.css index f249be8c4b4..c2d485de323 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -271,7 +271,11 @@ #expand * { cursor: pointer; } -#expand:hover, #expand:focus, #expand:active { color:#fff; } +#expand:hover, +#expand:focus, +#expand:active { + color: #fff; +} #expand img { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; opacity: .7; @@ -310,7 +314,8 @@ } #expanddiv a:hover, #expanddiv a:focus, - #expanddiv a:active { + #expanddiv a:active, + #expanddiv a.active { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; opacity: 1; } |