summaryrefslogtreecommitdiffstats
path: root/webapp/sass/responsive/_mobile.scss
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-06-27 08:21:24 -0400
committerChristopher Speller <crspeller@gmail.com>2016-06-27 08:21:24 -0400
commitb9cf09b5a40e590cdc13ca54558fe5431835df50 (patch)
tree2d08adbc866f9a8d3a008bfc9c86faca60ac9f2b /webapp/sass/responsive/_mobile.scss
parent459eee85a9ef4ee484565c089a8fc4e151fccc8a (diff)
downloadchat-b9cf09b5a40e590cdc13ca54558fe5431835df50.tar.gz
chat-b9cf09b5a40e590cdc13ca54558fe5431835df50.tar.bz2
chat-b9cf09b5a40e590cdc13ca54558fe5431835df50.zip
PLT-3242 Fixed clicking on input labels on iOS (#3417)
* Prevented channel notification settings radiobuttons from multi-selecting * Fixed clicking on input labels on iOS
Diffstat (limited to 'webapp/sass/responsive/_mobile.scss')
-rw-r--r--webapp/sass/responsive/_mobile.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index 6308829ec..78bd8580d 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -1051,3 +1051,9 @@
}
}
}
+
+// on iOS, allow clicks within an input's label to actually propagate through to the input itself
+// http://stackoverflow.com/a/34810294/6325807
+label span {
+ pointer-events: none;
+} \ No newline at end of file