diff options
Diffstat (limited to 'superhero/bootswatch.less')
-rw-r--r-- | superhero/bootswatch.less | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/superhero/bootswatch.less b/superhero/bootswatch.less index 86c2c00e..606404a5 100644 --- a/superhero/bootswatch.less +++ b/superhero/bootswatch.less @@ -258,6 +258,48 @@ label, .box-shadow(none); } +a.list-group-item { + + &.active, + &.active:hover, + &.active:focus { + border: none; + } + + &-success { + &.active { + background-color: @state-success-bg; + } + + &.active:hover, + &.active:focus { + background-color: darken(@state-success-bg, 5%); + } + } + + &-warning { + &.active { + background-color: @state-warning-bg; + } + + &.active:hover, + &.active:focus { + background-color: darken(@state-warning-bg, 5%); + } + } + + &-danger { + &.active { + background-color: @state-danger-bg; + } + + &.active:hover, + &.active:focus { + background-color: darken(@state-danger-bg, 5%); + } + } +} + .panel { border: none; |