mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
29 lines
434 B
SCSS
29 lines
434 B
SCSS
@import "../../ionic.globals";
|
|
|
|
// List
|
|
// --------------------------------------------------
|
|
|
|
|
|
.list {
|
|
display: block;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
|
|
ion-list-header {
|
|
display: block;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.list[inset] {
|
|
overflow: hidden;
|
|
transform: translateZ(0);
|
|
|
|
ion-list-header {
|
|
background-color: $list-background-color;
|
|
}
|
|
}
|