Files
2015-05-27 16:57:57 -05:00

44 lines
842 B
SCSS

// List
// --------------------------------------------------
$list-margin-top: 35px !default;
$list-margin-bottom: 10px !default;
.list-header {
position: relative;
margin-top: $list-margin-top;
margin-bottom: $list-margin-bottom;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.list {
position: relative;
display: block;
margin: $list-margin-top 0;
padding: 0;
// TODO: Verify if we need this, it makes margin sizing (inset, etc.) not
// work and is not present in v1
//width: 100%;
list-style-type: none;
&.list-inset {
margin-top: 0;
margin-left: -$content-padding;
margin-right: -$content-padding;
}
}
.list + .list-footer {
margin: ($list-margin-bottom - $list-margin-top) 0 $list-margin-bottom;
}
.list-header + .list {
margin-top: 0;
}