From 6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 13 Jul 2018 19:06:45 +0200 Subject: Fixed many permissions and began admin interface --- .../bootstrap/less/mixins/list-group.less | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 public/bower_components/bootstrap/less/mixins/list-group.less (limited to 'public/bower_components/bootstrap/less/mixins/list-group.less') diff --git a/public/bower_components/bootstrap/less/mixins/list-group.less b/public/bower_components/bootstrap/less/mixins/list-group.less new file mode 100755 index 0000000..03aa190 --- /dev/null +++ b/public/bower_components/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 v1.2.3