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
Этот коммит содержится в:
Harrison Healey
2016-06-27 08:21:24 -04:00
коммит произвёл Christopher Speller
родитель 459eee85a9
Коммит b9cf09b5a4
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@@ -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;
}