diff options
author | Guillaume COMPAGNON <gcompagnon@outlook.com> | 2019-08-21 17:18:23 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-11-24 21:51:43 +0100 |
commit | ed399a31bdf501dd2a5cf35a736b85ecbc9cf4a2 (patch) | |
tree | c95fab03907150266c090fb565b6abbb6ef821ec /apps/theming/css | |
parent | cd7af395d7d0442fbe9b87a28345fb70ddd9b7a4 (diff) | |
download | nextcloud-server-ed399a31bdf501dd2a5cf35a736b85ecbc9cf4a2.tar.gz nextcloud-server-ed399a31bdf501dd2a5cf35a736b85ecbc9cf4a2.zip |
add var for theming images , advanced options
Signed-off-by: Guillaume COMPAGNON <gcompagnon@outlook.com>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/theming.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index f21f00f438a..368b3f33c5d 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -153,7 +153,7 @@ $invert: luma($color-primary) > 0.6; @if variable_exists('theming-logoheader-mime') and $theming-logoheader-mime != '' { #theming .advanced-option-logoheader .image-preview, body:not(#body-login) #header .logo { - background-image: url(#{$image-logoheader}); + background-image: $image-logoheader; } } @else { #theming .advanced-option-favicon .image-preview { @@ -163,7 +163,7 @@ $invert: luma($color-primary) > 0.6; @if variable_exists('theming-favicon-mime') and $theming-favicon-mime != '' { #theming .advanced-option-favicon .image-preview { - background-image: url(#{$image-favicon}); + background-image: $image-favicon; } } @else { #theming .advanced-option-favicon .image-preview { |