diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-15 20:29:45 +0200 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-15 21:07:50 +0200 |
commit | 623db8549e2d36ddce6fbfaca41ac29ca36e57b1 (patch) | |
tree | 68a441bbe24a9a161f8fef0c610526cc9e29928e /core | |
parent | 16ef7c62dc6f5bf0b439c9f11c4dbd6bcb251fcf (diff) | |
download | nextcloud-server-623db8549e2d36ddce6fbfaca41ac29ca36e57b1.tar.gz nextcloud-server-623db8549e2d36ddce6fbfaca41ac29ca36e57b1.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 97fe72d18e6..8dbf5cf698a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -408,7 +408,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); } |