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
Этот коммит содержится в:
Ari Autio
2017-03-24 23:10:40 +02:00
коммит произвёл Joram Wilander
родитель 4dc03613b4
Коммит 9cfa733178
3 изменённых файлов: 13 добавлений и 7 удалений

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

@@ -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) {