Skip to content

Commit

Permalink
Fixes #8093: Removes invalid focus styles on inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Jun 20, 2013
1 parent 4db9024 commit 90d4343
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 29 deletions.
15 changes: 0 additions & 15 deletions docs/assets/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -1610,21 +1610,6 @@ fieldset[disabled] input[type="checkbox"] {
border-color: #468847;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
color: #b94a48;
border-color: #ee5f5b;
}

input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
border-color: #e9322d;
-webkit-box-shadow: 0 0 6px #f8b9b7;
box-shadow: 0 0 6px #f8b9b7;
}

.help-block {
display: block;
margin-top: 5px;
Expand Down
14 changes: 0 additions & 14 deletions less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -287,20 +287,6 @@ input[type="checkbox"] {
.form-field-validation(@state-success-text, @state-success-text, @state-success-bg);
}

// HTML5 invalid states
// Shares styles with the .control-group.error above
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
color: #b94a48;
border-color: #ee5f5b;
&:focus {
border-color: darken(#ee5f5b, 10%);
@shadow: 0 0 6px lighten(#ee5f5b, 20%);
.box-shadow(@shadow);
}
}




Expand Down

0 comments on commit 90d4343

Please sign in to comment.