mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
31 lines
823 B
SCSS
31 lines
823 B
SCSS
|
|
// Material Design List
|
|
// --------------------------------------------------
|
|
|
|
$list-md-header-padding: 30px $item-md-padding-right 10px $item-md-padding-left !default;
|
|
$list-md-header-font-size: 1.2rem !default;
|
|
$list-md-header-color: #6d6d72 !default;
|
|
|
|
$list-md-footer-padding: 10px $item-md-padding-right 0 $item-md-padding-left !default;
|
|
$list-md-footer-font-size: 1.2rem !default;
|
|
$list-md-footer-color: #8f8f94 !default;
|
|
|
|
|
|
.list[mode=md] {
|
|
|
|
ion-header {
|
|
padding: $list-md-header-padding;
|
|
font-size: $list-md-header-font-size;
|
|
text-transform: uppercase;
|
|
color: $list-md-header-color;
|
|
}
|
|
|
|
ion-footer {
|
|
padding: $list-md-footer-padding;
|
|
font-size: $list-md-footer-font-size;
|
|
text-transform: uppercase;
|
|
color: $list-md-footer-color;
|
|
}
|
|
|
|
}
|