You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.7 KiB

10 years ago
  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. // Align badges within list items
  32. > .badge {
  33. float: right;
  34. }
  35. > .badge + .badge {
  36. margin-right: 5px;
  37. }
  38. }
  39. // Linked list items
  40. //
  41. // Use anchor elements instead of `li`s or `div`s to create linked list items.
  42. // Includes an extra `.active` modifier class for showing selected items.
  43. a.list-group-item {
  44. color: @list-group-link-color;
  45. .list-group-item-heading {
  46. color: @list-group-link-heading-color;
  47. }
  48. // Hover state
  49. &:hover,
  50. &:focus {
  51. text-decoration: none;
  52. background-color: @list-group-hover-bg;
  53. }
  54. // Active class on item itself, not parent
  55. &.active,
  56. &.active:hover,
  57. &.active:focus {
  58. z-index: 2; // Place active items above their siblings for proper border styling
  59. color: @list-group-active-color;
  60. background-color: @list-group-active-bg;
  61. border-color: @list-group-active-border;
  62. // Force color to inherit for custom content
  63. .list-group-item-heading {
  64. color: inherit;
  65. }
  66. .list-group-item-text {
  67. color: @list-group-active-text-color;
  68. }
  69. }
  70. }
  71. // Contextual variants
  72. //
  73. // Add modifier classes to change text and background color on individual items.
  74. // Organizationally, this must come after the `:hover` states.
  75. .list-group-item-variant(success; @state-success-bg; @state-success-text);
  76. .list-group-item-variant(info; @state-info-bg; @state-info-text);
  77. .list-group-item-variant(warning; @state-warning-bg; @state-warning-text);
  78. .list-group-item-variant(danger; @state-danger-bg; @state-danger-text);
  79. // Custom content options
  80. //
  81. // Extra classes for creating well-formatted content within `.list-group-item`s.
  82. .list-group-item-heading {
  83. margin-top: 0;
  84. margin-bottom: 5px;
  85. }
  86. .list-group-item-text {
  87. margin-bottom: 0;
  88. line-height: 1.3;
  89. }