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
|
|
|
|
@include hover-focus {
|
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;
|
2013-03-31 00:07:50 +01:00
|
|
|
// Place the border on the list items and negative margin up for better styling
|
2015-11-15 21:46:35 +01:00
|
|
|
margin-bottom: -$list-group-border-width;
|
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 {
|
|
|
|
margin-bottom: 0;
|
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
|
|
|
@include hover-focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
|
|
|
color: $list-group-disabled-color;
|
|
|
|
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 {
|
2016-12-28 22:45:07 +01: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-17 00:45:10 +02:00
|
|
|
border-color: $list-group-active-border-color;
|
2013-07-02 02:32:07 +02:00
|
|
|
}
|
2013-03-31 00:07:50 +01:00
|
|
|
}
|
2013-08-12 10:38:06 +02: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 {
|
2016-10-10 01:57:32 +02:00
|
|
|
border-right: 0;
|
|
|
|
border-left: 0;
|
2016-02-07 04:50:00 +01:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
2016-10-15 21:57:36 +02:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
.list-group-item:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
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.
|
|
|
|
|
2014-12-02 23:02:35 +01:00
|
|
|
@include list-group-item-variant(success, $state-success-bg, $state-success-text);
|
|
|
|
@include list-group-item-variant(info, $state-info-bg, $state-info-text);
|
|
|
|
@include list-group-item-variant(warning, $state-warning-bg, $state-warning-text);
|
|
|
|
@include list-group-item-variant(danger, $state-danger-bg, $state-danger-text);
|