Merge pull request #1442 from crazyserver/MOBILE-2535

MOBILE-2535 ux: White space wrap on radio buttons
main
Juan Leyva 2018-08-21 14:48:24 +01:00 committed by GitHub
commit 4750ea0865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 1 deletions

View File

@ -827,13 +827,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.