1234567891011121314151617181920212223242526272829303132 |
- //
- // List Groups Flavor
- // --------------------------------------------------
- .list-group {
- .shadow-2dp();
- }
- .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;
- }
- .list-group-item.empty-message {
- padding-top: @line-height-computed;
- padding-bottom: @line-height-computed;
-
- text-align: center;
- p {
- margin: @line-height-computed / 2 0px;
- }
- }
|