2013-03-30 16:07:50 -07:00
|
|
|
// Base class
|
|
|
|
//
|
|
|
|
// Easily usable on <ul>, <ol>, or <div>.
|
2013-12-07 14:09:03 -08:00
|
|
|
|
2013-03-30 16:07:50 -07:00
|
|
|
.list-group {
|
2022-03-22 10:02:12 -07: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 12:01:58 +02:00
|
|
|
--#{$prefix}list-group-action-color: #{$list-group-action-color};
|
|
|
|
--#{$prefix}list-group-action-hover-color: #{$list-group-action-hover-color};
|
2022-04-15 16:38:46 +02:00
|
|
|
--#{$prefix}list-group-action-hover-bg: #{$list-group-hover-bg};
|
2022-04-01 12:01:58 +02: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 10:02:12 -07: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 20:26:17 -08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-01-20 16:39:43 -06:00
|
|
|
|
2013-03-30 16:07:50 -07:00
|
|
|
// No need to set list-style: none; since .list-group-item is block level
|
2013-06-21 17:21:44 -07:00
|
|
|
padding-left: 0; // reset padding because ul and ol
|
2015-05-28 14:07:34 -07:00
|
|
|
margin-bottom: 0;
|
2022-03-22 10:02:12 -07:00
|
|
|
@include border-radius(var(--#{$prefix}list-group-border-radius));
|
2013-03-30 16:07:50 -07:00
|
|
|
}
|
|
|
|
|
2021-03-10 21:49:47 -08:00
|
|
|
.list-group-numbered {
|
2021-02-12 10:51:18 -08:00
|
|
|
list-style-type: none;
|
|
|
|
counter-reset: section;
|
|
|
|
|
2022-02-18 00:17:37 +01:00
|
|
|
> .list-group-item::before {
|
2021-02-12 10:51:18 -08:00
|
|
|
// Increments only this instance of the section counter
|
|
|
|
content: counters(section, ".") ". ";
|
|
|
|
counter-increment: section;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-14 13:20:54 -07: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 12:01:58 +02:00
|
|
|
color: var(--#{$prefix}list-group-action-color);
|
2022-03-14 13:20:54 -07: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 12:01:58 +02:00
|
|
|
color: var(--#{$prefix}list-group-action-hover-color);
|
2022-03-14 13:20:54 -07:00
|
|
|
text-decoration: none;
|
2022-04-15 16:38:46 +02:00
|
|
|
background-color: var(--#{$prefix}list-group-action-hover-bg);
|
2022-03-14 13:20:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2022-04-01 12:01:58 +02:00
|
|
|
color: var(--#{$prefix}list-group-action-active-color);
|
|
|
|
background-color: var(--#{$prefix}list-group-action-active-bg);
|
2022-03-14 13:20:54 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 16:07:50 -07:00
|
|
|
// Individual list items
|
2013-12-07 14:09:03 -08:00
|
|
|
//
|
|
|
|
// Use on `li`s or `div`s within the `.list-group` parent.
|
2013-03-30 16:07:50 -07:00
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
position: relative;
|
2017-03-18 16:30:12 -07:00
|
|
|
display: block;
|
2022-03-22 10:02:12 -07: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 15:22:52 +01:00
|
|
|
text-decoration: if($link-decoration == none, null, none);
|
2022-03-22 10:02:12 -07: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 16:07:50 -07:00
|
|
|
|
2013-07-01 17:32:07 -07:00
|
|
|
&:first-child {
|
2020-04-02 07:10:11 +02:00
|
|
|
@include border-top-radius(inherit);
|
2013-07-01 17:32:07 -07:00
|
|
|
}
|
2016-02-06 19:50:00 -08:00
|
|
|
|
2013-07-01 17:32:07 -07:00
|
|
|
&:last-child {
|
2020-04-02 07:10:11 +02:00
|
|
|
@include border-bottom-radius(inherit);
|
2013-07-01 17:32:07 -07:00
|
|
|
}
|
2013-03-30 16:07:50 -07:00
|
|
|
|
2016-12-28 13:45:07 -08:00
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
2022-03-22 10:02:12 -07:00
|
|
|
color: var(--#{$prefix}list-group-disabled-color);
|
2018-09-05 12:50:50 +03:00
|
|
|
pointer-events: none;
|
2022-03-22 10:02:12 -07:00
|
|
|
background-color: var(--#{$prefix}list-group-disabled-bg);
|
2014-01-31 15:17:49 -05:00
|
|
|
}
|
2013-03-30 16:07:50 -07:00
|
|
|
|
2016-12-28 13:45:07 -08:00
|
|
|
// Include both here for `<a>`s and `<button>`s
|
2015-01-01 01:05:01 -08:00
|
|
|
&.active {
|
2017-12-23 00:41:13 -03:00
|
|
|
z-index: 2; // Place active items above their siblings for proper border styling
|
2022-03-22 10:02:12 -07: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 17:32:07 -07:00
|
|
|
}
|
2019-06-25 09:23:36 +03:00
|
|
|
|
2022-08-03 20:27:51 +02:00
|
|
|
// stylelint-disable-next-line scss/selector-no-redundant-nesting-selector
|
|
|
|
& + .list-group-item {
|
2019-06-25 09:23:36 +03:00
|
|
|
border-top-width: 0;
|
|
|
|
|
|
|
|
&.active {
|
2022-09-03 09:09:07 +02:00
|
|
|
margin-top: calc(-1 * var(--#{$prefix}list-group-border-width)); // stylelint-disable-line function-disallowed-list
|
2022-03-22 10:02:12 -07:00
|
|
|
border-top-width: var(--#{$prefix}list-group-border-width);
|
2019-06-25 09:23:36 +03:00
|
|
|
}
|
|
|
|
}
|
2013-03-30 16:07:50 -07:00
|
|
|
}
|
2013-08-12 01:38:06 -07:00
|
|
|
|
2019-01-06 17:01:36 -08: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;
|
|
|
|
|
2020-04-28 09:24:17 +02:00
|
|
|
> .list-group-item {
|
2022-08-24 10:27:36 +02:00
|
|
|
&:first-child:not(:last-child) {
|
2022-03-22 10:02:12 -07:00
|
|
|
@include border-bottom-start-radius(var(--#{$prefix}list-group-border-radius));
|
2020-06-26 17:06:20 +03:00
|
|
|
@include border-top-end-radius(0);
|
2019-01-08 19:18:36 +01:00
|
|
|
}
|
|
|
|
|
2022-08-24 10:27:36 +02:00
|
|
|
&:last-child:not(:first-child) {
|
2022-03-22 10:02:12 -07:00
|
|
|
@include border-top-end-radius(var(--#{$prefix}list-group-border-radius));
|
2020-06-26 17:06:20 +03:00
|
|
|
@include border-bottom-start-radius(0);
|
2019-01-06 17:01:36 -08:00
|
|
|
}
|
2019-06-25 09:23:36 +03:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2020-06-09 16:55:23 +03:00
|
|
|
+ .list-group-item {
|
2022-03-22 10:02:12 -07:00
|
|
|
border-top-width: var(--#{$prefix}list-group-border-width);
|
2019-06-25 09:23:36 +03:00
|
|
|
border-left-width: 0;
|
|
|
|
|
|
|
|
&.active {
|
2022-09-03 09:09:07 +02:00
|
|
|
margin-left: calc(-1 * var(--#{$prefix}list-group-border-width)); // stylelint-disable-line function-disallowed-list
|
2022-03-22 10:02:12 -07:00
|
|
|
border-left-width: var(--#{$prefix}list-group-border-width);
|
2019-06-25 09:23:36 +03:00
|
|
|
}
|
|
|
|
}
|
2019-01-06 17:01:36 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-28 13:45:07 -08: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 19:50:00 -08:00
|
|
|
.list-group-flush {
|
2020-04-02 07:10:11 +02:00
|
|
|
@include border-radius(0);
|
2018-10-19 11:01:36 +02:00
|
|
|
|
2020-04-28 09:24:17 +02:00
|
|
|
> .list-group-item {
|
2022-03-22 10:02:12 -07:00
|
|
|
border-width: 0 0 var(--#{$prefix}list-group-border-width);
|
2016-10-15 13:57:36 -06:00
|
|
|
|
2020-04-02 07:10:11 +02:00
|
|
|
&:last-child {
|
2019-06-25 09:23:36 +03:00
|
|
|
border-bottom-width: 0;
|
2016-10-15 13:57:36 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-06 19:50:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-06 20:13:35 +02:00
|
|
|
// scss-docs-start list-group-modifiers
|
|
|
|
// List group contextual variants
|
2013-12-07 14:09:03 -08:00
|
|
|
//
|
|
|
|
// Add modifier classes to change text and background color on individual items.
|
|
|
|
// Organizationally, this must come after the `:hover` states.
|
|
|
|
|
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-28 22:30:26 -08:00
|
|
|
@each $state in map-keys($theme-colors) {
|
|
|
|
.list-group-item-#{$state} {
|
2023-02-06 13:08:20 +01:00
|
|
|
--#{$prefix}list-group-color: var(--#{$prefix}#{$state}-text-emphasis);
|
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-28 22:30:26 -08:00
|
|
|
--#{$prefix}list-group-bg: var(--#{$prefix}#{$state}-bg-subtle);
|
|
|
|
--#{$prefix}list-group-border-color: var(--#{$prefix}#{$state}-border-subtle);
|
2023-01-16 16:40:09 +01:00
|
|
|
--#{$prefix}list-group-action-hover-color: var(--#{$prefix}emphasis-color);
|
|
|
|
--#{$prefix}list-group-action-hover-bg: var(--#{$prefix}#{$state}-border-subtle);
|
|
|
|
--#{$prefix}list-group-action-active-color: var(--#{$prefix}emphasis-color);
|
|
|
|
--#{$prefix}list-group-action-active-bg: var(--#{$prefix}#{$state}-border-subtle);
|
|
|
|
--#{$prefix}list-group-active-color: var(--#{$prefix}#{$state}-bg-subtle);
|
2023-02-06 13:08:20 +01:00
|
|
|
--#{$prefix}list-group-active-bg: var(--#{$prefix}#{$state}-text-emphasis);
|
|
|
|
--#{$prefix}list-group-active-border-color: var(--#{$prefix}#{$state}-text-emphasis);
|
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-28 22:30:26 -08:00
|
|
|
}
|
2017-06-28 09:29:59 -07:00
|
|
|
}
|
2020-04-06 20:13:35 +02:00
|
|
|
// scss-docs-end list-group-modifiers
|