list-group.less 650 B

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