Skip to content

Commit daefad7

Browse files
committed
Do not force border-width on invalid form inputs
I have set border-width on on my inputs and it is overridden by that declaration.
1 parent 90f3340 commit daefad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/forms/css/forms.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ since IE8 won't execute CSS that contains a CSS3 selector.
132132
.pure-form textarea:focus:invalid,
133133
.pure-form select:focus:invalid {
134134
color: #b94a48;
135-
border: 1px solid #ee5f5b;
135+
border-color: #ee5f5b;
136136
}
137137
.pure-form input:focus:invalid:focus,
138138
.pure-form textarea:focus:invalid:focus,

0 commit comments

Comments
 (0)