list-group.less 518 B

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