diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-15 20:29:45 +0200 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-15 20:29:45 +0200 |
commit | 19526c9cf6a6b391581046aee75a47bf189a0158 (patch) | |
tree | 764758a6c63dc16f1228911e5a482d77f6b9a5c3 /core | |
parent | 2fa34d6772ae578911dca17bbb0dc7a755024d05 (diff) | |
download | nextcloud-server-19526c9cf6a6b391581046aee75a47bf189a0158.tar.gz nextcloud-server-19526c9cf6a6b391581046aee75a47bf189a0158.zip |
also show black background on links that are active, fixes the news app that doesnt show the bg for folders correctly
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 043ca161c75..5bc4e8ed5c7 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -414,7 +414,8 @@ div.crumb a{ padding: 0.9em 0 0.7em 0; } -moz-box-sizing: border-box; box-sizing: border-box; text-shadow: 0 1px 0 rgba(255,255,255,.9); } -#app-navigation .active { /* active navigation entry or folder */ +#app-navigation .active, +#app-navigation .active a { /* active navigation entry or folder */ background-color: #ddd; text-shadow: 0 1px 0 rgba(255,255,255,.7); } |