0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Add missing quoting to icon-*-after CSS

This commit is contained in:
Matt Westcott 2016-03-15 17:07:10 +00:00
parent 84432fbfd6
commit 679df7e985
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@
@each $icon, $content in $icons-after {
.icon-#{$icon}:after {
content: #{$content};
content: quote(#{$content});
}
}

View File

@ -73,7 +73,7 @@ $positions: (
@each $icon, $content in $icons-after {
.#{$namespace}-icon-#{$icon}:after {
content: #{$content};
content: quote(#{$content});
}
}