diff options
author | Thomas Park <thomas@thomaspark.co> | 2016-03-11 17:21:53 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.co> | 2016-03-11 17:21:53 -0500 |
commit | 93c52826f10c8159b402ecb548b25f9b6357a130 (patch) | |
tree | 755d1e941f82da2b23aa6d8f352a2968172d09d8 /superhero/_bootswatch.scss | |
parent | d5e196e85a3a1f4ca72cacd59470e9fcf58c269a (diff) |
superhero: add borders for input states, closes #554
Diffstat (limited to 'superhero/_bootswatch.scss')
-rw-r--r-- | superhero/_bootswatch.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/superhero/_bootswatch.scss b/superhero/_bootswatch.scss index 439240cf..6fee0e9c 100644 --- a/superhero/_bootswatch.scss +++ b/superhero/_bootswatch.scss @@ -158,6 +158,11 @@ label, color: $brand-warning; } + .form-control, + .form-control:focus { + border: 4px solid $brand-warning; + } + .input-group-addon { border: none; } @@ -178,6 +183,11 @@ label, color: $brand-danger; } + .form-control, + .form-control:focus { + border: 4px solid $brand-danger; + } + .input-group-addon { border: none; } @@ -198,6 +208,11 @@ label, color: $brand-success; } + .form-control, + .form-control:focus { + border: 4px solid $brand-success; + } + .input-group-addon { border: none; } |