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