From: Nicolas Coden Date: Sun, 28 Jan 2018 08:10:42 +0000 (+0100) Subject: fix: reduce placeholder specificity #8366 X-Git-Tag: v6.6.0~3^2~307^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10887%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fix: reduce placeholder specificity #8366 Close https://github.com/zurb/foundation-sites/issues/8366 --- diff --git a/scss/forms/_text.scss b/scss/forms/_text.scss index b34b121ed..4277490b2 100644 --- a/scss/forms/_text.scss +++ b/scss/forms/_text.scss @@ -139,11 +139,6 @@ $form-button-radius: $global-radius !default; input, textarea { - // Placeholder text - &::placeholder { - color: $input-placeholder-color; - } - // Disabled/readonly state &:disabled, &[readonly] { @@ -176,4 +171,9 @@ $form-button-radius: $global-radius !default; } } } + + // Placeholder text + ::placeholder { + color: $input-placeholder-color; + } }