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.less | |
parent | d5e196e85a3a1f4ca72cacd59470e9fcf58c269a (diff) |
superhero: add borders for input states, closes #554
Diffstat (limited to 'superhero/bootswatch.less')
-rw-r--r-- | superhero/bootswatch.less | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/superhero/bootswatch.less b/superhero/bootswatch.less index 2a307b83..1af16723 100644 --- a/superhero/bootswatch.less +++ b/superhero/bootswatch.less @@ -162,6 +162,11 @@ label, color: @brand-warning; } + .form-control, + .form-control:focus { + border: 4px solid @brand-warning; + } + .input-group-addon { border: none; } @@ -182,6 +187,11 @@ label, color: @brand-danger; } + .form-control, + .form-control:focus { + border: 4px solid @brand-danger; + } + .input-group-addon { border: none; } @@ -202,6 +212,11 @@ label, color: @brand-success; } + .form-control, + .form-control:focus { + border: 4px solid @brand-success; + } + .input-group-addon { border: none; } |