aboutsummaryrefslogtreecommitdiffstats
path: root/assets/node_modules/bootstrap/scss/mixins/_list-group.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/bootstrap/scss/mixins/_list-group.scss')
-rw-r--r--assets/node_modules/bootstrap/scss/mixins/_list-group.scss21
1 files changed, 0 insertions, 21 deletions
diff --git a/assets/node_modules/bootstrap/scss/mixins/_list-group.scss b/assets/node_modules/bootstrap/scss/mixins/_list-group.scss
deleted file mode 100644
index 607ffcb..0000000
--- a/assets/node_modules/bootstrap/scss/mixins/_list-group.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-// List Groups
-
-@mixin list-group-item-variant($state, $background, $color) {
- .list-group-item-#{$state} {
- color: $color;
- background-color: $background;
-
- &.list-group-item-action {
- @include hover-focus {
- color: $color;
- background-color: darken($background, 5%);
- }
-
- &.active {
- color: #fff;
- background-color: $color;
- border-color: $color;
- }
- }
- }
-}