summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-10-29 15:45:45 +0100
committerGitHub <noreply@github.com>2018-10-29 15:45:45 +0100
commitc05e8acdb160599382dc3e392299785669c79560 (patch)
tree5401f602055b345f8d5da5eab8e86bc13711042e /core/css
parent4a642fc0048c03a24aa199ccc9df23d547f69aa2 (diff)
parent34a71f57fcc6683eed969fc26e19600dfb529b53 (diff)
downloadnextcloud-server-c05e8acdb160599382dc3e392299785669c79560.tar.gz
nextcloud-server-c05e8acdb160599382dc3e392299785669c79560.zip
Merge pull request #12019 from nextcloud/icons-svg-api-fixes
Move svg api endpoint
Diffstat (limited to 'core/css')
-rw-r--r--core/css/functions.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/functions.scss b/core/css/functions.scss
index 5007c3bbe79..70c0b688fed 100644
--- a/core/css/functions.scss
+++ b/core/css/functions.scss
@@ -47,9 +47,9 @@
@function icon-color-path($icon, $dir, $color, $version: 1, $core: false) {
$color: remove-hash-from-color($color);
@if $core {
- @return '#{$webroot}/svg/core/#{$dir}/#{$icon}/#{$color}?v=#{$version}';
+ @return '#{$webroot}/svg/core/#{$dir}/#{$icon}?color=#{$color}&v=#{$version}';
} @else {
- @return '#{$webroot}/svg/#{$dir}/#{$icon}/#{$color}?v=#{$version}';
+ @return '#{$webroot}/svg/#{$dir}/#{$icon}?color=#{$color}&v=#{$version}';
}
}