2015-12-22 23:37:40 +03:00
// https://www.google.com/design/spec/components/lists.html#lists-specs
2015-12-23 04:15:40 +03:00
// - single line 48dp
// - single line avatar 56dp
// - double line (with and w/o avatar) 72dp
// - triple line 88dp
. list-group {
2016-01-18 22:51:46 +03:00
// Add 8dp of padding at the top and bottom of a list. One exception is at the top of a list with a subheader, because subheaders contain their own padding.
2015-12-23 04:15:40 +03:00
padding : .5 rem 0 ;
// dense size variation
& . mdb-list-group-sm {
padding : .25 rem 0 ;
2016-01-21 02:33:40 +03:00
. list-group-item {
2015-12-23 04:15:40 +03:00
padding : .5 rem 1 rem ;
}
}
2015-12-22 23:37:40 +03:00
}
. mdb-list-group-col {
display : flex ;
2015-12-23 04:15:40 +03:00
min-width : 0 ;
2015-12-22 23:37:40 +03:00
flex-direction : column ;
2015-12-23 04:15:40 +03:00
//flex-shrink: 0;
2015-12-22 23:37:40 +03:00
}
2016-01-21 02:33:40 +03:00
. list-group-item {
2015-12-23 04:15:40 +03:00
padding : 1 rem ;
line-height : 1 ;
2015-12-22 23:37:40 +03:00
2015-12-23 04:15:40 +03:00
. list-group-item-text { // word wrap? http://stackoverflow.com/a/26535469/2363935
//flex-flow: row wrap;
min-width : 0 ;
max-height : 2 .188 rem ; // 88dp tile total height
2015-12-23 19:31:49 +03:00
// FIXME: text overflow with ellipsis is not working
//flex: 0 1 auto; // http://stackoverflow.com/questions/12022288/how-to-keep-a-flex-item-from-overflowing-due-to-its-text
2015-12-23 04:15:40 +03:00
overflow : hidden ;
text-overflow : ellipsis ;
}
2015-12-22 23:37:40 +03:00
//------
2015-12-23 04:15:40 +03:00
// NOTE: there are many variations of icons/labels in a list, each one of these rules exist for a reason.
2015-12-22 23:37:40 +03:00
2015-12-23 04:15:40 +03:00
// first icon/label on the left
: first-child {
2015-12-22 23:37:40 +03:00
margin-right : 2 rem ; // single line icon is 72dp to text (16 pad + 24 icon + 32 margin)
}
2016-01-21 02:33:40 +03:00
// second icon/label, or only icon/label marked as 'pull-*-right', or any direct child element marked as right
> . pull-xs-right ,
> . pull-sm-right ,
> . pull-md-right ,
> . pull-lg-right ,
> . pull-xl-right ,
2015-12-23 04:15:40 +03:00
> * ~ . label : last-child ,
> * ~ . material-icons : last-child {
2015-12-22 23:37:40 +03:00
margin-right : 0 ; // some variations actually match the first-child
margin-left : auto ;
}
2016-01-21 02:33:40 +03:00
// add the padding to icons (margin-left is used for alignment)
. material-icons . pull-xs-right , / / need the specificity
. material-icons . pull-sm-right ,
. material-icons . pull-md-right ,
. material-icons . pull-lg-right ,
. material-icons . pull-xl-right ,
2015-12-23 04:15:40 +03:00
. material-icons ~ . material-icons : last-child {
padding-left : 1 rem ; // guarantee space per spec
}
//------
2015-12-22 23:37:40 +03:00
. list-group-item-heading {
//font-size: 1rem;
}
. list-group-item-text {
font-size : .875 rem ;
color : $gray ;
}
}