From 76d9e6ed11e21f31b6b5c542560db29277fdf918 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Mon, 2 Jul 2018 12:37:58 +0200 Subject: [PATCH] MOBILE-2444 ui: Fix links and videos in radio and checkbox --- src/app/app.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/app/app.scss b/src/app/app.scss index b75aebfeb..ee6c7fb2f 100644 --- a/src/app/app.scss +++ b/src/app/app.scss @@ -818,4 +818,12 @@ ion-alert.core-inapp-notification { body.keyboard-is-open core-ion-tabs .tabbar { display: none; -} \ No newline at end of file +} + +// Fix links and videos in ion-radio and ion-checkbox. +.item.item-radio, .item.item-checkbox { + .input-wrapper { + z-index: 5; + pointer-events: none; + } +}