Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weimann <mail@michael-weimann.eu>2018-08-30 21:00:13 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-10-02 09:37:55 +0300
commita45ec3d32430f40be93fa5f09832917b82c83f15 (patch)
treebdd333db314d26f5018217cb79c255cf9fac405d /apps/theming/css
parentc7e81e17c86a6e6beff433238a6923f5d931c22f (diff)
Refactors the scss svg functions
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
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 35341159f19..e2cd8fb11ee 100644
--- a/apps/theming/css/theming.scss
+++ b/apps/theming/css/theming.scss
@@ -12,9 +12,9 @@ $invert: luma($color-primary) > 0.6;
@if ($has-custom-logo == false) {
@if ($invert) {
- $image-logo: url('../../../../svg/core/logo/logo/000000?v=1');
+ $image-logo: url(icon-color-path('logo', 'logo', #000000, 1, true));
} @else {
- $image-logo: url('../../../../svg/core/logo/logo/ffffff?v=1');
+ $image-logo: url(icon-color-path('logo', 'logo', #ffffff, 1, true));
}
}