diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-08-19 15:42:51 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-08-19 15:42:51 +0200 |
commit | 9e5b721a0d0dad92400feaeef90c5ec5bba1f0da (patch) | |
tree | e1392eca146ed957d672dc3acadbafc5fa04a98c | |
parent | 95e1b62940444eb2a7467d994a7b4366f6e7f2fc (diff) | |
download | nextcloud-server-9e5b721a0d0dad92400feaeef90c5ec5bba1f0da.tar.gz nextcloud-server-9e5b721a0d0dad92400feaeef90c5ec5bba1f0da.zip |
fix minor style issue in the app navigation
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 52a265d2031..b03c08de738 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -739,7 +739,7 @@ div.crumb:active { /* special rules for first-level entries and folders */ #app-navigation > ul > li { - background-color: #eee; + background-color: #f8f8f8; } #app-navigation .with-icon a { @@ -860,6 +860,10 @@ div.crumb:active { color: #dd1144; } +#app-navigation .app-navigation-separator { + border-bottom: 1px solid #ccc; +} + /* Part where the content will be loaded into */ |