diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-03-06 09:46:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-06 09:46:52 +0100 |
commit | f4aae102f7fafeab23dd5fe1bba257ba9db0007b (patch) | |
tree | 6ddc1bbdac3e262893e41b17a5cf3dc34cb7143c | |
parent | d3d0d9e11d8fba89309a51aa8ab8c7fb6154f1a6 (diff) | |
parent | 80842e161103aa475901a15ca82bff52cd5b4277 (diff) | |
download | nextcloud-server-f4aae102f7fafeab23dd5fe1bba257ba9db0007b.tar.gz nextcloud-server-f4aae102f7fafeab23dd5fe1bba257ba9db0007b.zip |
Merge pull request #8675 from nextcloud/stable13-8601
[13] Remove too restrict check for background image/color
-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, |