From 94cee0ad004ef6a28a23a389b27ff42162b6adce Mon Sep 17 00:00:00 2001 From: octlabs Date: Thu, 11 Jun 2015 16:56:08 +0200 Subject: [PATCH] Default input type Fix to https://github.com/zurb/foundation/issues/6416 "The default type is text, if this attribute is not specified." (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-type) --- scss/foundation/components/_forms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/foundation/components/_forms.scss b/scss/foundation/components/_forms.scss index 103838804..a1230a646 100644 --- a/scss/foundation/components/_forms.scss +++ b/scss/foundation/components/_forms.scss @@ -418,7 +418,7 @@ $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%) !default; span.postfix, label.postfix { @include postfix(); } /* We use this to get basic styling on all basic form elements */ - #{text-inputs(all, 'input')} { + input:not([type]), #{text-inputs(all, 'input')} { -webkit-appearance: none; -moz-appearance: none; border-radius: 0; -- 2.47.2