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 {
|
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;
|
2013-03-30 19:07:50 -04:00
|
|
|
}
|
|
|
|
|
2013-12-07 17:09:03 -05:00
|
|
|
|
2016-12-28 16:45:07 -05: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-16 19:57:15 -04:00
|
|
|
color: $list-group-action-color;
|
2016-12-28 16:45:07 -05:00
|
|
|
text-align: inherit; // For `<button>`s (anchors inherit)
|
|
|
|
|
|
|
|
// Hover state
|
|
|
|
@include hover-focus {
|
2017-06-16 19:57:15 -04:00
|
|
|
color: $list-group-action-hover-color;
|
2016-12-28 16:45:07 -05:00
|
|
|
text-decoration: none;
|
|
|
|
background-color: $list-group-hover-bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2017-06-16 19:57:15 -04:00
|
|
|
color: $list-group-action-active-color;
|
|
|
|
background-color: $list-group-action-active-bg;
|
2016-12-28 16:45:07 -05: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;
|
2016-02-17 01:57:10 -05:00
|
|
|
padding: $list-group-item-padding-y $list-group-item-padding-x;
|
2013-03-30 19:07:50 -04:00
|
|
|
// Place the border on the list items and negative margin up for better styling
|
2015-11-15 15:46:35 -05:00
|
|
|
margin-bottom: -$list-group-border-width;
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $list-group-bg;
|
2015-11-15 15:46:35 -05:00
|
|
|
border: $list-group-border-width solid $list-group-border-color;
|
2013-03-30 19:07:50 -04:00
|
|
|
|
2013-07-01 20:32:07 -04:00
|
|
|
&:first-child {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include border-top-radius($list-group-border-radius);
|
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 {
|
|
|
|
margin-bottom: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
@include border-bottom-radius($list-group-border-radius);
|
2013-07-01 20:32:07 -04:00
|
|
|
}
|
2013-03-30 19:07:50 -04:00
|
|
|
|
2016-12-28 16:45:07 -05:00
|
|
|
@include hover-focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
|
|
|
color: $list-group-disabled-color;
|
|
|
|
background-color: $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 {
|
2016-12-28 16:45:07 -05:00
|
|
|
z-index: 2; // Place active items above their siblings for proper border styling
|
|
|
|
color: $list-group-active-color;
|
|
|
|
background-color: $list-group-active-bg;
|
2017-04-16 18:45:10 -04:00
|
|
|
border-color: $list-group-active-border-color;
|
2013-07-01 20:32:07 -04:00
|
|
|
}
|
2013-03-30 19:07:50 -04:00
|
|
|
}
|
2013-08-12 04:38:06 -04: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 {
|
|
|
|
.list-group-item {
|
2016-10-09 19:57:32 -04:00
|
|
|
border-right: 0;
|
|
|
|
border-left: 0;
|
2016-02-06 22:50:00 -05:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
2016-10-15 15:57:36 -04:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
.list-group-item:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2016-02-06 22:50:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-07 17:09:03 -05: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 12:29:59 -04:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
@include list-group-item-variant($color, theme-color-level($color, -9), theme-color-level($color, 6));
|
|
|
|
}
|