diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-14 17:29:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 17:29:03 +0200 |
commit | 5b2d6b080fea4b7afb74c79fdfa44d03315f07a9 (patch) | |
tree | fb1a19a43162fadc85264a269544ea162497c912 /apps | |
parent | ca3aef04862ca15c686519d48768f410ccada851 (diff) | |
parent | 995ddc61d10e82e4553f025bee1839e0ce041f84 (diff) | |
download | nextcloud-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.scss | 20 |
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; + } +} |