MOBILE-2535 ux: White space wrap on radio buttons

main
Pau Ferrer Ocaña 2018-08-03 13:24:44 +02:00
parent e6c5607463
commit 49f1de390e
1 changed files with 16 additions and 1 deletions

View File

@ -824,13 +824,28 @@ body.keyboard-is-open core-ion-tabs .tabbar {
display: none;
}
// Fix links and videos in ion-radio and ion-checkbox.
.item.item-radio, .item.item-checkbox {
// Fix links and videos in ion-radio and ion-checkbox.
.input-wrapper {
position: relative;
z-index: 5;
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.