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 {
|
|
|
|
// 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
|
|
|
|
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;
|
|
|
|
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
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
&.disabled {
|
|
|
|
@include plain-hover-focus {
|
|
|
|
color: $list-group-disabled-color;
|
|
|
|
cursor: $cursor-disabled;
|
|
|
|
background-color: $list-group-disabled-bg;
|
|
|
|
|
|
|
|
// Force color to inherit for custom content
|
|
|
|
.list-group-item-heading {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
.list-group-item-text {
|
|
|
|
color: $list-group-disabled-text-color;
|
|
|
|
}
|
2014-01-31 15:17:49 -05:00
|
|
|
}
|
|
|
|
}
|
2013-03-30 19:07:50 -04:00
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
&.active {
|
|
|
|
@include plain-hover-focus {
|
|
|
|
z-index: 2; // Place active items above their siblings for proper border styling
|
|
|
|
color: $list-group-active-color;
|
2016-02-06 22:50:00 -05:00
|
|
|
text-decoration: none; // Repeat here because it inherits global a:hover otherwise
|
2015-01-01 04:05:01 -05:00
|
|
|
background-color: $list-group-active-bg;
|
|
|
|
border-color: $list-group-active-border;
|
|
|
|
|
|
|
|
// Force color to inherit for custom content
|
|
|
|
.list-group-item-heading,
|
|
|
|
.list-group-item-heading > small,
|
|
|
|
.list-group-item-heading > .small {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
.list-group-item-text {
|
|
|
|
color: $list-group-active-text-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-02-06 22:50:00 -05:00
|
|
|
.list-group-flush {
|
|
|
|
.list-group-item {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
color: $list-group-link-color;
|
|
|
|
text-align: inherit; // For `<button>`s (anchors inherit)
|
|
|
|
|
|
|
|
.list-group-item-heading {
|
|
|
|
color: $list-group-link-heading-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hover state
|
|
|
|
@include hover-focus {
|
|
|
|
color: $list-group-link-hover-color;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $list-group-hover-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
|
2014-12-02 17:02:35 -05: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);
|
2013-12-07 17:09:03 -05:00
|
|
|
|
|
|
|
|
2013-08-12 04:38:06 -04:00
|
|
|
// Custom content options
|
2013-12-07 17:09:03 -05:00
|
|
|
//
|
|
|
|
// Extra classes for creating well-formatted content within `.list-group-item`s.
|
2013-08-12 04:38:06 -04:00
|
|
|
|
|
|
|
.list-group-item-heading {
|
|
|
|
margin-top: 0;
|
2016-02-17 01:27:29 -05:00
|
|
|
margin-bottom: $list-group-item-heading-margin-bottom;
|
2013-08-12 04:38:06 -04:00
|
|
|
}
|
|
|
|
.list-group-item-text {
|
|
|
|
margin-bottom: 0;
|
|
|
|
line-height: 1.3;
|
|
|
|
}
|