2013-03-30 19:07:50 -04:00
|
|
|
// Base class
|
|
|
|
//
|
|
|
|
// Easily usable on <ul>, <ol>, or <div>.
|
2013-12-07 17:09:03 -05:00
|
|
|
|
2013-03-30 19:07:50 -04:00
|
|
|
.list-group {
|
2022-03-22 13:02:12 -04:00
|
|
|
// scss-docs-start list-group-css-vars
|
|
|
|
--#{$prefix}list-group-color: #{$list-group-color};
|
|
|
|
--#{$prefix}list-group-bg: #{$list-group-bg};
|
|
|
|
--#{$prefix}list-group-border-color: #{$list-group-border-color};
|
|
|
|
--#{$prefix}list-group-border-width: #{$list-group-border-width};
|
|
|
|
--#{$prefix}list-group-border-radius: #{$list-group-border-radius};
|
|
|
|
--#{$prefix}list-group-item-padding-x: #{$list-group-item-padding-x};
|
|
|
|
--#{$prefix}list-group-item-padding-y: #{$list-group-item-padding-y};
|
2022-04-01 06:01:58 -04:00
|
|
|
--#{$prefix}list-group-action-color: #{$list-group-action-color};
|
|
|
|
--#{$prefix}list-group-action-hover-color: #{$list-group-action-hover-color};
|
2022-04-15 10:38:46 -04:00
|
|
|
--#{$prefix}list-group-action-hover-bg: #{$list-group-hover-bg};
|
2022-04-01 06:01:58 -04:00
|
|
|
--#{$prefix}list-group-action-active-color: #{$list-group-action-active-color};
|
|
|
|
--#{$prefix}list-group-action-active-bg: #{$list-group-action-active-bg};
|
2022-03-22 13:02:12 -04:00
|
|
|
--#{$prefix}list-group-disabled-color: #{$list-group-disabled-color};
|
|
|
|
--#{$prefix}list-group-disabled-bg: #{$list-group-disabled-bg};
|
|
|
|
--#{$prefix}list-group-active-color: #{$list-group-active-color};
|
|
|
|
--#{$prefix}list-group-active-bg: #{$list-group-active-bg};
|
|
|
|
--#{$prefix}list-group-active-border-color: #{$list-group-active-border-color};
|
|
|
|
// scss-docs-end list-group-css-vars
|
|
|
|
|
2016-12-21 23:26:17 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-01-20 17:39:43 -05:00
|
|
|
|
2013-03-30 19:07:50 -04:00
|
|
|
// No need to set list-style: none; since .list-group-item is block level
|
2013-06-21 20:21:44 -04:00
|
|
|
padding-left: 0; // reset padding because ul and ol
|
2015-05-28 17:07:34 -04:00
|
|
|
margin-bottom: 0;
|
2022-03-22 13:02:12 -04:00
|
|
|
@include border-radius(var(--#{$prefix}list-group-border-radius));
|
2013-03-30 19:07:50 -04:00
|
|
|
}
|
|
|
|
|
2021-03-11 00:49:47 -05:00
|
|
|
.list-group-numbered {
|
2021-02-12 13:51:18 -05:00
|
|
|
list-style-type: none;
|
|
|
|
counter-reset: section;
|
|
|
|
|
2022-02-17 18:17:37 -05:00
|
|
|
> .list-group-item::before {
|
2021-02-12 13:51:18 -05:00
|
|
|
// Increments only this instance of the section counter
|
|
|
|
content: counters(section, ".") ". ";
|
|
|
|
counter-increment: section;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-14 16:20:54 -04:00
|
|
|
// Interactive list items
|
|
|
|
//
|
|
|
|
// Use anchor or button elements instead of `li`s or `div`s to create interactive
|
|
|
|
// list items. Includes an extra `.active` modifier class for selected items.
|
|
|
|
|
|
|
|
.list-group-item-action {
|
|
|
|
width: 100%; // For `<button>`s (anchors become 100% by default though)
|
2022-04-01 06:01:58 -04:00
|
|
|
color: var(--#{$prefix}list-group-action-color);
|
2022-03-14 16:20:54 -04:00
|
|
|
text-align: inherit; // For `<button>`s (anchors inherit)
|
|
|
|
|
|
|
|
// Hover state
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
z-index: 1; // Place hover/focus items above their siblings for proper border styling
|
2022-04-01 06:01:58 -04:00
|
|
|
color: var(--#{$prefix}list-group-action-hover-color);
|
2022-03-14 16:20:54 -04:00
|
|
|
text-decoration: none;
|
2022-04-15 10:38:46 -04:00
|
|
|
background-color: var(--#{$prefix}list-group-action-hover-bg);
|
2022-03-14 16:20:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2022-04-01 06:01:58 -04:00
|
|
|
color: var(--#{$prefix}list-group-action-active-color);
|
|
|
|
background-color: var(--#{$prefix}list-group-action-active-bg);
|
2022-03-14 16:20:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 19:07:50 -04:00
|
|
|
// Individual list items
|
2013-12-07 17:09:03 -05:00
|
|
|
//
|
|
|
|
// Use on `li`s or `div`s within the `.list-group` parent.
|
2013-03-30 19:07:50 -04:00
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
position: relative;
|
2017-03-18 19:30:12 -04:00
|
|
|
display: block;
|
2022-03-22 13:02:12 -04:00
|
|
|
padding: var(--#{$prefix}list-group-item-padding-y) var(--#{$prefix}list-group-item-padding-x);
|
|
|
|
color: var(--#{$prefix}list-group-color);
|
2020-03-05 09:22:52 -05:00
|
|
|
text-decoration: if($link-decoration == none, null, none);
|
2022-03-22 13:02:12 -04:00
|
|
|
background-color: var(--#{$prefix}list-group-bg);
|
|
|
|
border: var(--#{$prefix}list-group-border-width) solid var(--#{$prefix}list-group-border-color);
|
2013-03-30 19:07:50 -04:00
|
|
|
|
2013-07-01 20:32:07 -04:00
|
|
|
&:first-child {
|
2020-04-02 01:10:11 -04:00
|
|
|
@include border-top-radius(inherit);
|
2013-07-01 20:32:07 -04:00
|
|
|
}
|
2016-02-06 22:50:00 -05:00
|
|
|
|
2013-07-01 20:32:07 -04:00
|
|
|
&:last-child {
|
2020-04-02 01:10:11 -04:00
|
|
|
@include border-bottom-radius(inherit);
|
2013-07-01 20:32:07 -04:00
|
|
|
}
|
2013-03-30 19:07:50 -04:00
|
|
|
|
2016-12-28 16:45:07 -05:00
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
2022-03-22 13:02:12 -04:00
|
|
|
color: var(--#{$prefix}list-group-disabled-color);
|
2018-09-05 05:50:50 -04:00
|
|
|
pointer-events: none;
|
2022-03-22 13:02:12 -04:00
|
|
|
background-color: var(--#{$prefix}list-group-disabled-bg);
|
2014-01-31 15:17:49 -05:00
|
|
|
}
|
2013-03-30 19:07:50 -04:00
|
|
|
|
2016-12-28 16:45:07 -05:00
|
|
|
// Include both here for `<a>`s and `<button>`s
|
2015-01-01 04:05:01 -05:00
|
|
|
&.active {
|
2017-12-22 22:41:13 -05:00
|
|
|
z-index: 2; // Place active items above their siblings for proper border styling
|
2022-03-22 13:02:12 -04:00
|
|
|
color: var(--#{$prefix}list-group-active-color);
|
|
|
|
background-color: var(--#{$prefix}list-group-active-bg);
|
|
|
|
border-color: var(--#{$prefix}list-group-active-border-color);
|
2013-07-01 20:32:07 -04:00
|
|
|
}
|
2019-06-25 02:23:36 -04:00
|
|
|
|
|
|
|
& + & {
|
|
|
|
border-top-width: 0;
|
|
|
|
|
|
|
|
&.active {
|
2022-03-22 13:02:12 -04:00
|
|
|
margin-top: calc(var(--#{$prefix}list-group-border-width) * -1); // stylelint-disable-line function-disallowed-list
|
|
|
|
border-top-width: var(--#{$prefix}list-group-border-width);
|
2019-06-25 02:23:36 -04:00
|
|
|
}
|
|
|
|
}
|
2013-03-30 19:07:50 -04:00
|
|
|
}
|
2013-08-12 04:38:06 -04:00
|
|
|
|
2019-01-06 20:01:36 -05:00
|
|
|
// Horizontal
|
|
|
|
//
|
|
|
|
// Change the layout of list group items from vertical (default) to horizontal.
|
|
|
|
|
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
|
|
|
2019-01-08 13:18:36 -05:00
|
|
|
.list-group-horizontal#{$infix} {
|
|
|
|
flex-direction: row;
|
|
|
|
|
2020-04-28 03:24:17 -04:00
|
|
|
> .list-group-item {
|
2019-01-08 13:18:36 -05:00
|
|
|
&:first-child {
|
2022-03-22 13:02:12 -04:00
|
|
|
@include border-bottom-start-radius(var(--#{$prefix}list-group-border-radius));
|
2020-06-26 10:06:20 -04:00
|
|
|
@include border-top-end-radius(0);
|
2019-01-08 13:18:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2022-03-22 13:02:12 -04:00
|
|
|
@include border-top-end-radius(var(--#{$prefix}list-group-border-radius));
|
2020-06-26 10:06:20 -04:00
|
|
|
@include border-bottom-start-radius(0);
|
2019-01-06 20:01:36 -05:00
|
|
|
}
|
2019-06-25 02:23:36 -04:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2020-06-09 09:55:23 -04:00
|
|
|
+ .list-group-item {
|
2022-03-22 13:02:12 -04:00
|
|
|
border-top-width: var(--#{$prefix}list-group-border-width);
|
2019-06-25 02:23:36 -04:00
|
|
|
border-left-width: 0;
|
|
|
|
|
|
|
|
&.active {
|
2022-03-22 13:02:12 -04:00
|
|
|
margin-left: calc(var(--#{$prefix}list-group-border-width) * -1); // stylelint-disable-line function-disallowed-list
|
|
|
|
border-left-width: var(--#{$prefix}list-group-border-width);
|
2019-06-25 02:23:36 -04:00
|
|
|
}
|
|
|
|
}
|
2019-01-06 20:01:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-28 16:45:07 -05:00
|
|
|
// Flush list items
|
|
|
|
//
|
|
|
|
// Remove borders and border-radius to keep list group items edge-to-edge. Most
|
|
|
|
// useful within other components (e.g., cards).
|
|
|
|
|
2016-02-06 22:50:00 -05:00
|
|
|
.list-group-flush {
|
2020-04-02 01:10:11 -04:00
|
|
|
@include border-radius(0);
|
2018-10-19 05:01:36 -04:00
|
|
|
|
2020-04-28 03:24:17 -04:00
|
|
|
> .list-group-item {
|
2022-03-22 13:02:12 -04:00
|
|
|
border-width: 0 0 var(--#{$prefix}list-group-border-width);
|
2016-10-15 15:57:36 -04:00
|
|
|
|
2020-04-02 01:10:11 -04:00
|
|
|
&:last-child {
|
2019-06-25 02:23:36 -04:00
|
|
|
border-bottom-width: 0;
|
2016-10-15 15:57:36 -04:00
|
|
|
}
|
|
|
|
}
|
2016-02-06 22:50:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-06 14:13:35 -04:00
|
|
|
// scss-docs-start list-group-modifiers
|
|
|
|
// List group contextual variants
|
2013-12-07 17:09:03 -05:00
|
|
|
//
|
|
|
|
// Add modifier classes to change text and background color on individual items.
|
|
|
|
// Organizationally, this must come after the `:hover` states.
|
|
|
|
|
2020-11-08 13:49:26 -05:00
|
|
|
@each $state, $value in $theme-colors {
|
2021-05-07 04:55:23 -04:00
|
|
|
$list-group-variant-bg: shift-color($value, $list-group-item-bg-scale);
|
|
|
|
$list-group-variant-color: shift-color($value, $list-group-item-color-scale);
|
|
|
|
@if (contrast-ratio($list-group-variant-bg, $list-group-variant-color) < $min-contrast-ratio) {
|
|
|
|
$list-group-variant-color: mix($value, color-contrast($list-group-variant-bg), abs($list-group-item-color-scale));
|
2020-11-08 13:49:26 -05:00
|
|
|
}
|
|
|
|
|
2021-05-07 04:55:23 -04:00
|
|
|
@include list-group-item-variant($state, $list-group-variant-bg, $list-group-variant-color);
|
2017-06-28 12:29:59 -04:00
|
|
|
}
|
2020-04-06 14:13:35 -04:00
|
|
|
// scss-docs-end list-group-modifiers
|