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:
Diffstat (limited to 'core/css/functions.scss')
-rw-r--r--core/css/functions.scss1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/css/functions.scss b/core/css/functions.scss
index c34765154e4..7489e574e97 100644
--- a/core/css/functions.scss
+++ b/core/css/functions.scss
@@ -27,6 +27,7 @@
* @return string The color without #
*/
@function remove-hash-from-color($color) {
+ $color: unquote($color);
$index: str-index(inspect($color), '#');
@if $index {
$color: str-slice(inspect($color), 2);