diff options
Diffstat (limited to 'paper/_bootswatch.scss')
-rw-r--r-- | paper/_bootswatch.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/paper/_bootswatch.scss b/paper/_bootswatch.scss index ba85639e..b3a68569 100644 --- a/paper/_bootswatch.scss +++ b/paper/_bootswatch.scss @@ -336,27 +336,27 @@ input[type="checkbox"], } .has-warning { - input, + input:not([type=checkbox]), .form-control, - input:focus, + input:not([type=checkbox]):focus, .form-control:focus { @include box-shadow(inset 0 -2px 0 $brand-warning); } } .has-error { - input, + input:not([type=checkbox]), .form-control, - input:focus, + input:not([type=checkbox]):focus, .form-control:focus { @include box-shadow(inset 0 -2px 0 $brand-danger); } } .has-success { - input, + input:not([type=checkbox]), .form-control, - input:focus, + input:not([type=checkbox]):focus, .form-control:focus { @include box-shadow(inset 0 -2px 0 $brand-success); } |