summaryrefslogtreecommitdiffstats
path: root/webapp/sass/responsive
diff options
context:
space:
mode:
authorAri Autio <ari.autio@iki.fi>2017-03-24 23:10:40 +0200
committerJoram Wilander <jwawilander@gmail.com>2017-03-24 17:10:40 -0400
commit9cfa7331785181c4ce80b6c45b6bb8b2df6f8dc3 (patch)
tree1ed12c5b17d49b3443fcbdea97b7c2542bd53195 /webapp/sass/responsive
parent4dc03613b41b1e8a3cad77582fd4d80c6bf401f4 (diff)
downloadchat-9cfa7331785181c4ce80b6c45b6bb8b2df6f8dc3.tar.gz
chat-9cfa7331785181c4ce80b6c45b6bb8b2df6f8dc3.tar.bz2
chat-9cfa7331785181c4ce80b6c45b6bb8b2df6f8dc3.zip
PLT-5281 error messages contain a link to documentation about reserved words (#5530)
* PLT-5281 error messages contain a link to documentation about reserved words * Updated comments per PM review * Proposed fix to review comments
Diffstat (limited to 'webapp/sass/responsive')
-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) {