| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @import "../../themes/ionic.globals";
-
- // Label
- // --------------------------------------------------
-
- ion-label {
- @include margin(0);
-
- display: block;
- overflow: hidden;
-
- flex: 1;
-
- font-size: inherit;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-
- .item-input ion-label {
- flex: initial;
-
- max-width: 200px;
-
- pointer-events: none;
- }
-
- [text-wrap] ion-label {
- white-space: normal;
- }
-
-
- // Stacked & Floating Inputs
- // --------------------------------------------------
-
- ion-label[fixed] {
- flex: 0 0 100px;
-
- width: 100px;
- min-width: 100px;
- max-width: 200px;
- }
-
- .item-label-stacked ion-label,
- .item-label-floating ion-label {
- align-self: stretch;
-
- width: auto;
- max-width: 100%;
- }
-
- ion-label[stacked],
- ion-label[floating] {
- @include margin(null, null, 0, null);
- }
-
- .item-label-stacked .input-wrapper,
- .item-label-floating .input-wrapper {
- flex: 1;
- flex-direction: column;
- }
-
- .item-label-stacked ion-select,
- .item-label-floating ion-select {
- align-self: stretch;
-
- max-width: 100%;
- }
|