2014-04-22 19:59:35 +00:00
|
|
|
.list-group-item {
|
|
|
|
padding: 0;
|
|
|
|
border-width: 2px;
|
2014-04-25 19:12:21 +00:00
|
|
|
border-bottom-width: 2px;
|
2014-04-22 19:59:35 +00:00
|
|
|
border-radius: 0px;
|
2014-04-24 20:21:55 +00:00
|
|
|
margin-bottom: 15px;
|
|
|
|
margin-top: 15px;
|
2014-04-30 16:15:54 +00:00
|
|
|
@include transition(background-color .3s ease-in-out);
|
2014-04-22 19:59:35 +00:00
|
|
|
|
|
|
|
.list-group-item-heading, .list-inline {
|
|
|
|
margin: 10px 15px 10px 15px;
|
|
|
|
padding: 0px 5px 10px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-inline {
|
|
|
|
padding-left: 0px;
|
|
|
|
color: $gray;
|
2014-04-23 14:45:58 +00:00
|
|
|
font-size: 13px;
|
2014-04-22 19:59:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-group-item-heading {
|
|
|
|
border-bottom: 2px solid #eee;
|
|
|
|
color: $gray-darker;
|
|
|
|
|
|
|
|
.heading-helper {
|
|
|
|
float: right;
|
|
|
|
font-weight: 600;
|
|
|
|
color: $gray-light;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-bar {
|
|
|
|
width: 100%;
|
|
|
|
height: 20px;
|
2014-04-25 16:45:55 +00:00
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-top-left-radius: 2px;
|
2014-04-22 19:59:35 +00:00
|
|
|
}
|
2014-04-24 20:21:55 +00:00
|
|
|
|
|
|
|
&.list-link:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: lighten($gray-background, 8%);
|
|
|
|
}
|
2014-04-25 16:45:55 +00:00
|
|
|
|
|
|
|
&.active {
|
2014-04-30 16:15:54 +00:00
|
|
|
@include transition(border-color .1s linear);
|
2014-04-29 20:16:22 +00:00
|
|
|
border-color: $purple;
|
2014-04-30 15:43:04 +00:00
|
|
|
|
2014-04-29 20:16:22 +00:00
|
|
|
.list-bar {
|
2014-04-30 16:15:54 +00:00
|
|
|
@include transition(background-color .1s linear);
|
2014-04-29 20:16:22 +00:00
|
|
|
background-color: $purple;
|
|
|
|
}
|
2014-04-25 16:45:55 +00:00
|
|
|
}
|
|
|
|
|
2014-04-22 19:59:35 +00:00
|
|
|
}
|
2014-04-24 17:58:03 +00:00
|
|
|
|
|
|
|
ul.list-broken {
|
|
|
|
li {
|
2014-04-25 16:45:55 +00:00
|
|
|
// border-top: 2px lighten($gray-background, 5%) solid;
|
2014-04-24 17:58:03 +00:00
|
|
|
}
|
|
|
|
|
2014-04-25 16:45:55 +00:00
|
|
|
&:last-child {
|
|
|
|
// border-bottom: 2px lighten($gray-background, 5%) solid;
|
2014-04-24 17:58:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|