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-06 09:08:49 +0100 |
commit | 80842e161103aa475901a15ca82bff52cd5b4277 (patch) | |
tree | 6ddc1bbdac3e262893e41b17a5cf3dc34cb7143c | |
parent | d3d0d9e11d8fba89309a51aa8ab8c7fb6154f1a6 (diff) | |
download | nextcloud-server-80842e161103aa475901a15ca82bff52cd5b4277.tar.gz nextcloud-server-80842e161103aa475901a15ca82bff52cd5b4277.zip |
Remove to restrict check for background image/color
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-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, |