From: Hugo Giraudel Date: Sun, 22 Nov 2015 22:41:48 +0000 (+0100) Subject: not is an operator, not a function X-Git-Tag: v6.0.4~19^2~14^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7134%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git not is an operator, not a function --- diff --git a/scss/forms/_text.scss b/scss/forms/_text.scss index 11b6b0f31..d53d79489 100644 --- a/scss/forms/_text.scss +++ b/scss/forms/_text.scss @@ -140,7 +140,7 @@ $input-radius: $global-radius !default; // Number input styles [type='number'] { - @if not($input-number-spinners) { + @if not $input-number-spinners { -moz-appearance: textfield; [type='number']::-webkit-inner-spin-button, diff --git a/scss/util/_selector.scss b/scss/util/_selector.scss index cf85359ad..7724b2638 100644 --- a/scss/util/_selector.scss +++ b/scss/util/_selector.scss @@ -27,7 +27,7 @@ url color; - @if not(hasvalue($types)) { + @if not hasvalue($types) { $types: $all-types; }