summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-08-14 17:29:03 +0200
committerGitHub <noreply@github.com>2017-08-14 17:29:03 +0200
commit5b2d6b080fea4b7afb74c79fdfa44d03315f07a9 (patch)
treefb1a19a43162fadc85264a269544ea162497c912 /apps
parentca3aef04862ca15c686519d48768f410ccada851 (diff)
parent995ddc61d10e82e4553f025bee1839e0ce041f84 (diff)
downloadnextcloud-server-5b2d6b080fea4b7afb74c79fdfa44d03315f07a9.tar.gz
nextcloud-server-5b2d6b080fea4b7afb74c79fdfa44d03315f07a9.zip
Merge pull request #6080 from nextcloud/header-bottom-border
Add buttom border for header
Diffstat (limited to 'apps')
-rw-r--r--apps/theming/css/theming.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss
index 77fc6f70200..252d009289e 100644
--- a/apps/theming/css/theming.scss
+++ b/apps/theming/css/theming.scss
@@ -116,3 +116,23 @@ input.primary {
}
}
}
+
+@if ($color-primary == #ffffff) {
+ /* show grey border below header */
+ #body-user #header,
+ #body-settings #header,
+ #body-public #header {
+ border-bottom: 1px solid #ebebeb;
+ }
+
+ /* show triangle in header in grey */
+ #appmenu li a.active:before,
+ .header-right #settings #expand:before {
+ border-bottom-color:#ebebeb;
+ }
+
+ /* show border around quota bar in files app */
+ .app-files #quota .quota-container {
+ border: 1px solid #ebebeb;
+ }
+}