diff --git a/.scss-lint.yml b/.scss-lint.yml index f2f350c..21aa55f 100644 --- a/.scss-lint.yml +++ b/.scss-lint.yml @@ -92,15 +92,14 @@ linters: enabled: false SpaceBetweenParens: - enabled: true - spaces: 0 + enabled: false StringQuotes: enabled: false style: double_quotes TrailingSemicolonAfterPropertyValue: - enabled: true + enabled: false UnnecessaryMantissa: enabled: true diff --git a/sass/mixins.scss b/sass/mixins.scss index 6bc0917..ac34490 100644 --- a/sass/mixins.scss +++ b/sass/mixins.scss @@ -45,7 +45,7 @@ background-image: -ms-linear-gradient(top, $color-from 0%, $color-to 100%); // IE10+ background-image: -o-linear-gradient(top, $color-from 0%, $color-to 100%); // Opera 11.10+ background-image: linear-gradient(to bottom, $color-from 0%, $color-to 100%); // W3C - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#{$color-from}",endColorstr="#{$color-to}",GradientType=0); // IE6-9 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#{$color-from}",endColorstr="#{$color-to}",GradientType=0 ); // IE6-9 } @mixin directional-gradient($color-from, $color-to, $deg: 45deg) { background-color: $color-from; // Old browsers @@ -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 }