list-group.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. //
  2. // List groups
  3. // --------------------------------------------------
  4. // Base class
  5. //
  6. // Easily usable on <ul>, <ol>, or <div>.
  7. .list-group {
  8. // No need to set list-style: none; since .list-group-item is block level
  9. margin-bottom: 20px;
  10. padding-left: 0; // reset padding because ul and ol
  11. }
  12. // Individual list items
  13. //
  14. // Use on `li`s or `div`s within the `.list-group` parent.
  15. .list-group-item {
  16. position: relative;
  17. display: block;
  18. padding: 10px 15px;
  19. // Place the border on the list items and negative margin up for better styling
  20. margin-bottom: -1px;
  21. background-color: @list-group-bg;
  22. border: 1px solid @list-group-border;
  23. // Round the first and last items
  24. &:first-child {
  25. .border-top-radius(@list-group-border-radius);
  26. }
  27. &:last-child {
  28. margin-bottom: 0;
  29. .border-bottom-radius(@list-group-border-radius);
  30. }
  31. }
  32. // Linked list items
  33. //
  34. // Use anchor elements instead of `li`s or `div`s to create linked list items.
  35. // Includes an extra `.active` modifier class for showing selected items.
  36. a.list-group-item {
  37. color: @list-group-link-color;
  38. .list-group-item-heading {
  39. color: @list-group-link-heading-color;
  40. }
  41. // Hover state
  42. &:hover,
  43. &:focus {
  44. text-decoration: none;
  45. color: @list-group-link-hover-color;
  46. background-color: @list-group-hover-bg;
  47. }
  48. }
  49. .list-group-item {
  50. // Disabled state
  51. &.disabled,
  52. &.disabled:hover,
  53. &.disabled:focus {
  54. background-color: @list-group-disabled-bg;
  55. color: @list-group-disabled-color;
  56. cursor: @cursor-disabled;
  57. // Force color to inherit for custom content
  58. .list-group-item-heading {
  59. color: inherit;
  60. }
  61. .list-group-item-text {
  62. color: @list-group-disabled-text-color;
  63. }
  64. }
  65. // Active class on item itself, not parent
  66. &.active,
  67. &.active:hover,
  68. &.active:focus {
  69. z-index: 2; // Place active items above their siblings for proper border styling
  70. color: @list-group-active-color;
  71. background-color: @list-group-active-bg;
  72. border-color: @list-group-active-border;
  73. // Force color to inherit for custom content
  74. .list-group-item-heading,
  75. .list-group-item-heading > small,
  76. .list-group-item-heading > .small {
  77. color: inherit;
  78. }
  79. .list-group-item-text {
  80. color: @list-group-active-text-color;
  81. }
  82. }
  83. }
  84. // Contextual variants
  85. //
  86. // Add modifier classes to change text and background color on individual items.
  87. // Organizationally, this must come after the `:hover` states.
  88. .list-group-item-variant(success; @state-success-bg; @state-success-text);
  89. .list-group-item-variant(info; @state-info-bg; @state-info-text);
  90. .list-group-item-variant(warning; @state-warning-bg; @state-warning-text);
  91. .list-group-item-variant(danger; @state-danger-bg; @state-danger-text);
  92. // Custom content options
  93. //
  94. // Extra classes for creating well-formatted content within `.list-group-item`s.
  95. .list-group-item-heading {
  96. margin-top: 0;
  97. margin-bottom: 5px;
  98. }
  99. .list-group-item-text {
  100. margin-bottom: 0;
  101. line-height: 1.3;
  102. }