diff options
Diffstat (limited to 'less')
| -rw-r--r-- | less/button-groups.less | 7 | ||||
| -rw-r--r-- | less/mixins.less | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/less/button-groups.less b/less/button-groups.less index ddb549e4b..8a83ab3f2 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -156,3 +156,10 @@ width: 1%; } } + + +// Checkbox and radio options +.btn-group[data-toggle="buttons-radio"] > .btn > input[type="radio"], +.btn-group[data-toggle="buttons-checkbox"] > .btn > input[type="checkbox"] { + display: none; +} diff --git a/less/mixins.less b/less/mixins.less index 15f6275b7..482e7e76f 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -401,7 +401,8 @@ &:hover, &:focus, - &:active { + &:active, + &.active { background-color: darken(@background, 5%); border-color: darken(@border, 10%); } @@ -411,7 +412,8 @@ fieldset[disabled] & { &:hover, &:focus, - &:active { + &:active, + &.active { background-color: @background; border-color: @border } |
