From 85a9d81638d240f3fa9ed01cb139ef33243b379b Mon Sep 17 00:00:00 2001 From: sanjeevi01 Date: Fri, 5 Jul 2019 15:30:52 +0530 Subject: Initial commit --- bootstrap/less/mixins/list-group.less | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 bootstrap/less/mixins/list-group.less (limited to 'bootstrap/less/mixins/list-group.less') diff --git a/bootstrap/less/mixins/list-group.less b/bootstrap/less/mixins/list-group.less new file mode 100755 index 0000000..03aa190 --- /dev/null +++ b/bootstrap/less/mixins/list-group.less @@ -0,0 +1,30 @@ +// List Groups + +.list-group-item-variant(@state; @background; @color) { + .list-group-item-@{state} { + color: @color; + background-color: @background; + + a&, + button& { + color: @color; + + .list-group-item-heading { + color: inherit; + } + + &:hover, + &:focus { + color: @color; + background-color: darken(@background, 5%); + } + &.active, + &.active:hover, + &.active:focus { + color: #fff; + background-color: @color; + border-color: @color; + } + } + } +} -- cgit