mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 13:01:01 +08:00
35 lines
465 B
SCSS
35 lines
465 B
SCSS
@import "../../globals.core";
|
|
|
|
// Select
|
|
// --------------------------------------------------
|
|
|
|
ion-select {
|
|
display: flex;
|
|
overflow: hidden;
|
|
|
|
max-width: 45%;
|
|
}
|
|
|
|
.select-text {
|
|
overflow: hidden;
|
|
|
|
flex: 1;
|
|
|
|
min-width: 16px;
|
|
|
|
font-size: inherit;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.item-multiple-inputs ion-select {
|
|
position: relative;
|
|
}
|
|
|
|
.select-disabled,
|
|
.item-select-disabled ion-label {
|
|
opacity: .4;
|
|
|
|
pointer-events: none;
|
|
}
|