diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-03-28 12:24:10 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-04-19 20:14:39 +0200 |
commit | daadc1c892e3febceb370ea0f62722b777572d65 (patch) | |
tree | 2c8f68678fa1b923ff534d90f4b44366c9cd3e9b /apps/theming/css | |
parent | 5a5c125b233e8099c4a2b7ba530784bb975ed860 (diff) | |
download | nextcloud-server-daadc1c892e3febceb370ea0f62722b777572d65.tar.gz nextcloud-server-daadc1c892e3febceb370ea0f62722b777572d65.zip |
Fix background color
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/theming.scss | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 88d3e7cf0fc..f65e20fa9b7 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -92,8 +92,8 @@ /* override styles for login screen in guest.css */ @if variable_exists('theming-logo-mime') and $theming-logo-mime != '' { - #theming-preview-logo, - #header .logo { + #theming-preview-logo, + #header .logo { background-image: url(#{$image-logo}); background-size: contain; } @@ -101,9 +101,9 @@ margin-bottom: 22px; } } @else { - #theming-preview-logo { - background-image: url(#{$image-logo}); - } + #theming-preview-logo { + background-image: url(#{$image-logo}); + } } @if variable_exists('theming-background-mime') and $theming-background-mime != '' { @@ -167,6 +167,10 @@ input.primary, } } +} @else { + #body-login { + background-color: $color-primary; + } } @if ($color-primary == #ffffff) { |