list-group.less 556 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // List Groups Flavor
  3. // --------------------------------------------------
  4. .list-group {
  5. border-radius: @border-radius-base;
  6. .shadow-4dp();
  7. }
  8. .list-group .list-group-item {
  9. border-left: none;
  10. border-right: none;
  11. }
  12. .list-group .list-group-item:first-child {
  13. border-top: none;
  14. }
  15. .list-group .list-group-item:last-child {
  16. border-bottom: none;
  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. }