12345678910111213141516171819202122 |
- //
- // List Groups Flavor
- // --------------------------------------------------
- .list-group {
- border-radius: @border-radius-base;
- .shadow-4dp();
- }
- .list-group .list-group-item {
- border-left: none;
- border-right: none;
- }
- .list-group .list-group-item:first-child {
- border-top: none;
- }
- .list-group .list-group-item:last-child {
- border-bottom: none;
- }
|