diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-08-30 20:00:13 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-10-02 08:37:55 +0200 |
commit | a45ec3d32430f40be93fa5f09832917b82c83f15 (patch) | |
tree | bdd333db314d26f5018217cb79c255cf9fac405d /apps/theming/css | |
parent | c7e81e17c86a6e6beff433238a6923f5d931c22f (diff) | |
download | nextcloud-server-a45ec3d32430f40be93fa5f09832917b82c83f15.tar.gz nextcloud-server-a45ec3d32430f40be93fa5f09832917b82c83f15.zip |
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.scss | 4 |
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)); } } |