summaryrefslogtreecommitdiffstats
path: root/apps/theming/css
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-05-05 00:32:32 -0300
committerMorris Jobke <hey@morrisjobke.de>2017-05-05 00:37:32 -0300
commitac04fb8277c5a1b8c33eca9569a644b78c6f12e1 (patch)
treefdbffab8525e270d36283a2cf418636f372b9d09 /apps/theming/css
parent619d09529c417df10ac57815024b89dee9285c35 (diff)
downloadnextcloud-server-ac04fb8277c5a1b8c33eca9569a644b78c6f12e1.tar.gz
nextcloud-server-ac04fb8277c5a1b8c33eca9569a644b78c6f12e1.zip
Fix invalid theming URLs
* logo and background image had the cache buster applied twice: background-image: url(http://192.168.99.100/server/core/img/logo.svg?v=0?v=0); Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/theming/css')
-rw-r--r--apps/theming/css/theming.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss
index d2196362d3b..71e0df6735e 100644
--- a/apps/theming/css/theming.scss
+++ b/apps/theming/css/theming.scss
@@ -45,12 +45,12 @@
#header .logo,
#header .logo-icon {
background-size: contain;
- background-image: url(#{$image-logo}?v=#{$theming-cachebuster});
+ background-image: url(#{$image-logo});
}
#body-login,
#firstrunwizard .firstrunwizard-header {
- background-image: url(#{$image-login-background}?v=#{$theming-cachebuster});
+ background-image: url(#{$image-login-background});
background-color: $color-primary;
}