summaryrefslogtreecommitdiffstats
path: root/webapp/sass/responsive/_mobile.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/responsive/_mobile.scss')
-rw-r--r--webapp/sass/responsive/_mobile.scss10
1 files changed, 8 insertions, 2 deletions
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index e6cf0ed7d..39f8cb349 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -1727,10 +1727,16 @@
}
}
-// on iOS, allow clicks within an input's label to actually propagate through to the input itself
+// on iOS, allow clicks within an input's label to actually propagate through to the input itself,
+// but still allow clicks to a elements to go trough
// http://stackoverflow.com/a/34810294/6325807
-label span {
+label {
+ span {
pointer-events: none;
+ }
+ span a {
+ pointer-events: all;
+ }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {