diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-03-05 11:28:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-05 11:28:41 +0100 |
commit | 3ced2c7ab25ae6c7f64d96a4b16754f902a9689f (patch) | |
tree | 87a8a18a35cf66284c249bdff46238fc942ecf5d /apps | |
parent | a8f56ac8c71aa7854d2018f294eeb2e7e3e4d2eb (diff) | |
parent | c52179165306ad4eec1bf70c14473bf6e00ce5fc (diff) | |
download | nextcloud-server-3ced2c7ab25ae6c7f64d96a4b16754f902a9689f.tar.gz nextcloud-server-3ced2c7ab25ae6c7f64d96a4b16754f902a9689f.zip |
Merge pull request #8601 from nextcloud/theming-fix-background-color
Remove too restrict check for background image/color
Diffstat (limited to 'apps')
-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, |