diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-03-01 14:35:34 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-03-01 14:39:31 +0100 |
commit | c52179165306ad4eec1bf70c14473bf6e00ce5fc (patch) | |
tree | bcad0f6c9ffb8fa882843fa478a7fbd8902bcdc0 /apps/theming | |
parent | 560c0ef783c3ea271da335183822136e99a9edff (diff) | |
download | nextcloud-server-c52179165306ad4eec1bf70c14473bf6e00ce5fc.tar.gz nextcloud-server-c52179165306ad4eec1bf70c14473bf6e00ce5fc.zip |
Remove to restrict check for background image/color
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/css/theming.scss | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 623aad063f1..3bb26a14814 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -101,13 +101,11 @@ } } -@if variable_exists('theming-background-mime') and $theming-background-mime != '' { - #body-login, - #firstrunwizard .firstrunwizard-header, - #theming-preview { - background-image: url(#{$image-login-background}); - background-color: $color-primary; - } +#body-login, +#firstrunwizard .firstrunwizard-header, +#theming-preview { + background-image: url(#{$image-login-background}); + background-color: $color-primary; } input.primary, |