diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-08 19:38:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 19:38:40 +0100 |
commit | 36b5bb583ac104c43f54cfe9e049baa7e80b9daa (patch) | |
tree | 437e1df996f0d9e0d6b801305b8418fa56a4d6ab /apps/theming | |
parent | e046ed3527dbafd1772a68b4996c5f797cc301e1 (diff) | |
parent | bf94acfee79fd0166864d3dae148b67acae3fac7 (diff) | |
download | nextcloud-server-36b5bb583ac104c43f54cfe9e049baa7e80b9daa.tar.gz nextcloud-server-36b5bb583ac104c43f54cfe9e049baa7e80b9daa.zip |
Merge pull request #18726 from marius-wieschollek/bugfix/18661
[#18661] Always include custom login image in theming
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/css/theming.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 3b2b6ee7ae5..0e9b922b277 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -12,7 +12,7 @@ } @mixin faded-background-image { - @if ($color-primary == #0082C9) { + @if ($color-primary == #0082C9) or ($has-custom-background == true) { background-image: $image-login-background, linear-gradient(40deg, $color-primary 0%, lighten($color-primary, 20%) 100%); @if($has-custom-background == true) { |