list-groups.less 413 B

12345678910111213141516171819202122232425
  1. //
  2. // List groups
  3. // --------------------------------------------------
  4. .list-group {
  5. border: none;
  6. border-radius: @border-radius-base;
  7. .shadow-2dp();
  8. .list-group-item {
  9. &:first-child {
  10. border-top: none;
  11. }
  12. &:last-child {
  13. border-bottom: none;
  14. }
  15. &, &:link, &:visited, &:hover, &:focus, &:active, &.active {
  16. border-left: none;
  17. border-right: none;
  18. }
  19. }
  20. }