diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-05-04 09:57:29 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2023-05-09 12:27:21 +0200 |
commit | c90ffa906e9351a9c35472e9079a38ddb9beb72b (patch) | |
tree | 5485704f3f43a8f92704f918bcbd0f7b901d69de /core | |
parent | b6a5e353bfa61f308e79149319651566a728bbdb (diff) | |
download | nextcloud-server-c90ffa906e9351a9c35472e9079a38ddb9beb72b.tar.gz nextcloud-server-c90ffa906e9351a9c35472e9079a38ddb9beb72b.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 2b820b1ca2e..c837a66b568 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; |