2013-03-31 00:07:50 +01:00
|
|
|
// Base class
|
|
|
|
//
|
|
|
|
// Easily usable on <ul>, <ol>, or <div>.
|
2013-12-07 23:09:03 +01:00
|
|
|
|
2013-03-31 00:07:50 +01:00
|
|
|
.list-group {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-01-20 23:39:43 +01:00
|
|
|
|
2013-03-31 00:07:50 +01:00
|
|
|
// No need to set list-style: none; since .list-group-item is block level
|
2013-06-22 02:21:44 +02:00
|
|
|
padding-left: 0; // reset padding because ul and ol
|
2015-05-28 23:07:34 +02:00
|
|
|
margin-bottom: 0;
|
2013-03-31 00:07:50 +01:00
|
|
|
}
|
|
|
|
|
2013-12-07 23:09:03 +01:00
|
|
|
|
2016-12-28 22:45:07 +01: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)
|
2017-06-17 01:57:15 +02:00
|
|
|
color: $list-group-action-color;
|
2016-12-28 22:45:07 +01:00
|
|
|
text-align: inherit; // For `<button>`s (anchors inherit)
|
|
|
|
|
|
|
|
// Hover state
|
2019-07-24 09:53:13 +02:00
|
|
|
@include hover-focus() {
|
2019-01-08 05:59:49 +01:00
|
|
|
z-index: 1; // Place hover/focus items above their siblings for proper border styling
|
2017-06-17 01:57:15 +02:00
|
|
|
color: $list-group-action-hover-color;
|
2016-12-28 22:45:07 +01:00
|
|
|
text-decoration: none;
|
|
|
|
background-color: $list-group-hover-bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2017-06-17 01:57:15 +02:00
|
|
|
color: $list-group-action-active-color;
|
|
|
|
background-color: $list-group-action-active-bg;
|
2016-12-28 22:45:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-31 00:07:50 +01:00
|
|
|
// Individual list items
|
2013-12-07 23:09:03 +01:00
|
|
|
//
|
|
|
|
// Use on `li`s or `div`s within the `.list-group` parent.
|
2013-03-31 00:07:50 +01:00
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
position: relative;
|
2017-03-19 00:30:12 +01:00
|
|
|
display: block;
|
2016-02-17 07:57:10 +01:00
|
|
|
padding: $list-group-item-padding-y $list-group-item-padding-x;
|
2019-01-20 22:38:29 +01:00
|
|
|
color: $list-group-color;
|
2014-12-02 23:02:35 +01:00
|
|
|
background-color: $list-group-bg;
|
2015-11-15 21:46:35 +01:00
|
|
|
border: $list-group-border-width solid $list-group-border-color;
|
2013-03-31 00:07:50 +01:00
|
|
|
|
2013-07-02 02:32:07 +02:00
|
|
|
&:first-child {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-top-radius($list-group-border-radius);
|
2013-07-02 02:32:07 +02:00
|
|
|
}
|
2016-02-07 04:50:00 +01:00
|
|
|
|
2013-07-02 02:32:07 +02:00
|
|
|
&:last-child {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-bottom-radius($list-group-border-radius);
|
2013-07-02 02:32:07 +02:00
|
|
|
}
|
2013-03-31 00:07:50 +01:00
|
|
|
|
2016-12-28 22:45:07 +01:00
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
|
|
|
color: $list-group-disabled-color;
|
2018-09-05 11:50:50 +02:00
|
|
|
pointer-events: none;
|
2016-12-28 22:45:07 +01:00
|
|
|
background-color: $list-group-disabled-bg;
|
2014-01-31 21:17:49 +01:00
|
|
|
}
|
2013-03-31 00:07:50 +01:00
|
|
|
|
2016-12-28 22:45:07 +01:00
|
|
|
// Include both here for `<a>`s and `<button>`s
|
2015-01-01 10:05:01 +01:00
|
|
|
&.active {
|
2017-12-23 04:41:13 +01:00
|
|
|
z-index: 2; // Place active items above their siblings for proper border styling
|
2016-12-28 22:45:07 +01:00
|
|
|
color: $list-group-active-color;
|
|
|
|
background-color: $list-group-active-bg;
|
2017-04-17 00:45:10 +02:00
|
|
|
border-color: $list-group-active-border-color;
|
2013-07-02 02:32:07 +02:00
|
|
|
}
|
2019-06-25 08:23:36 +02:00
|
|
|
|
|
|
|
& + & {
|
|
|
|
border-top-width: 0;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
margin-top: -$list-group-border-width;
|
|
|
|
border-top-width: $list-group-border-width;
|
|
|
|
}
|
|
|
|
}
|
2013-03-31 00:07:50 +01:00
|
|
|
}
|
2013-08-12 10:38:06 +02:00
|
|
|
|
2016-12-28 22:45:07 +01:00
|
|
|
|
2019-01-07 02:01:36 +01: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 19:18:36 +01:00
|
|
|
.list-group-horizontal#{$infix} {
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
&:first-child {
|
2019-06-26 15:11:37 +02:00
|
|
|
@include border-bottom-left-radius($list-group-border-radius);
|
2019-01-08 19:18:36 +01:00
|
|
|
@include border-top-right-radius(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2019-06-26 15:11:37 +02:00
|
|
|
@include border-top-right-radius($list-group-border-radius);
|
2019-01-08 19:18:36 +01:00
|
|
|
@include border-bottom-left-radius(0);
|
2019-01-07 02:01:36 +01:00
|
|
|
}
|
2019-06-25 08:23:36 +02:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& + .list-group-item {
|
|
|
|
border-top-width: $list-group-border-width;
|
|
|
|
border-left-width: 0;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
margin-left: -$list-group-border-width;
|
|
|
|
border-left-width: $list-group-border-width;
|
|
|
|
}
|
|
|
|
}
|
2019-01-07 02:01:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-28 22:45:07 +01: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-07 04:50:00 +01:00
|
|
|
.list-group-flush {
|
|
|
|
.list-group-item {
|
2019-06-25 08:23:36 +02:00
|
|
|
border-right-width: 0;
|
|
|
|
border-left-width: 0;
|
2017-10-23 04:43:35 +02:00
|
|
|
@include border-radius(0);
|
2018-10-19 11:01:36 +02:00
|
|
|
|
2019-06-25 08:23:36 +02:00
|
|
|
&:first-child {
|
|
|
|
border-top-width: 0;
|
2016-10-15 21:57:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
.list-group-item:last-child {
|
2019-06-25 08:23:36 +02:00
|
|
|
border-bottom-width: 0;
|
2016-10-15 21:57:36 +02:00
|
|
|
}
|
|
|
|
}
|
2016-02-07 04:50:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-07 23:09:03 +01:00
|
|
|
// Contextual variants
|
|
|
|
//
|
|
|
|
// Add modifier classes to change text and background color on individual items.
|
|
|
|
// Organizationally, this must come after the `:hover` states.
|
|
|
|
|
2017-06-28 18:29:59 +02:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
@include list-group-item-variant($color, theme-color-level($color, -9), theme-color-level($color, 6));
|
|
|
|
}
|