list-group.less 633 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // List Groups Flavor
  3. // --------------------------------------------------
  4. .list-group {
  5. border-radius: @list-group-border-radius;
  6. .list-group-item {
  7. border-left-color: @list-group-outer-border;
  8. border-right-color: @list-group-outer-border;
  9. }
  10. .list-group-item:first-child {
  11. border-top-color: @list-group-outer-border;
  12. }
  13. .list-group-item:last-child {
  14. border-bottom-color: @list-group-outer-border;
  15. }
  16. }
  17. .list-group-item.empty-message {
  18. padding-top: @line-height-computed;
  19. padding-bottom: @line-height-computed;
  20. text-align: center;
  21. p {
  22. margin: @line-height-computed / 2 0px;
  23. }
  24. }