summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/list-group.less
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/list-group.less')
-rw-r--r--www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/list-group.less30
1 files changed, 30 insertions, 0 deletions
diff --git a/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/list-group.less b/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/list-group.less
new file mode 100644
index 00000000..03aa1906
--- /dev/null
+++ b/www/wiki/extensions/Bootstrap/resources/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;
+ }
+ }
+ }
+}