mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
31 lines
415 B
SCSS
31 lines
415 B
SCSS
@import "../../globals.core";
|
|
|
|
// DateTime
|
|
// --------------------------------------------------
|
|
|
|
ion-datetime {
|
|
display: flex;
|
|
overflow: hidden;
|
|
|
|
max-width: 45%;
|
|
}
|
|
|
|
.datetime-text {
|
|
overflow: hidden;
|
|
|
|
flex: 1;
|
|
|
|
min-width: 16px;
|
|
|
|
font-size: inherit;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.datetime-disabled,
|
|
.item-datetime-disabled ion-label {
|
|
opacity: .4;
|
|
|
|
pointer-events: none;
|
|
}
|