From ce54eeccafcbf95ad77a32e1ad1f3f90cf92a9dc Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Sun, 24 Aug 2014 23:42:01 +0900 Subject: [PATCH] Fixes double-quoted strings --- sass/mixins.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sass/mixins.scss b/sass/mixins.scss index 354b542..127a489 100644 --- a/sass/mixins.scss +++ b/sass/mixins.scss @@ -55,7 +55,7 @@ background-image: -ms-linear-gradient(45deg, $color-from 0%, $color-to 100%); // IE10+ background-image: -o-linear-gradient(45deg, $color-from 0%, $color-to 100%); // Opera 11.10+ background-image: linear-gradient(45deg, $color-from 0%, $color-to 100%); // W3C - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$color-from}', endColorstr='#{$color-to}', GradientType=1 ); // IE6-9 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$color-from}', endColorstr='#{$color-to}', GradientType=1); // IE6-9 } @@ -115,13 +115,13 @@ // -------------------------------------------------- @mixin hairline($type, $color, $offset) { @if $type == single { - background-image: url("data:image/svg+xml;utf8,"); + background-image: url("data:image/svg+xml;utf8,"); background-position: $offset 100%; } @else if $type == double { background-image: url("data:image/svg+xml;utf8,"), - url("data:image/svg+xml;utf8,"); +0%' height='1'>"), + url("data:image/svg+xml;utf8,"); background-position: $offset 100%, $offset 0; } background-repeat: no-repeat;