MOBILE-2535 ux: White space wrap on radio buttons
parent
e6c5607463
commit
49f1de390e
|
@ -824,13 +824,28 @@ body.keyboard-is-open core-ion-tabs .tabbar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fix links and videos in ion-radio and ion-checkbox.
|
|
||||||
.item.item-radio, .item.item-checkbox {
|
.item.item-radio, .item.item-checkbox {
|
||||||
|
// Fix links and videos in ion-radio and ion-checkbox.
|
||||||
.input-wrapper {
|
.input-wrapper {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Show whole text on options.
|
||||||
|
ion-label {
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.core-no-text-wrap {
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
&.item.item-radio, &.item.item-checkbox {
|
||||||
|
ion-label {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fix iframes in fullscreen mode.
|
// Fix iframes in fullscreen mode.
|
||||||
|
|
Loading…
Reference in New Issue