diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-05-04 09:57:29 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-05-04 13:02:49 +0200 |
commit | 74461a9479cdc37691fa3f7500013fcdbfc61898 (patch) | |
tree | 60dba9c0546aa3d111477cc4638ea3504335a171 /core | |
parent | c6ebb0d7863e8f218202ac6c6b27783ad6c16448 (diff) | |
download | nextcloud-server-74461a9479cdc37691fa3f7500013fcdbfc61898.tar.gz nextcloud-server-74461a9479cdc37691fa3f7500013fcdbfc61898.zip |
fix(theming): ensure image background is not defined if admin disabled it
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 2e647b18620..10572614bea 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -46,7 +46,7 @@ html { body { // color-background-plain should always be defined. It is the primary user colour background-color: var(--color-background-plain, var(--color-main-background)); - // color-background-plain should always be defined. It is the primary user colour + // image-background-plain means the admin has disabled the background image background-image: var(--image-background, var(--image-background-default)); background-size: cover; background-position: center; |