You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But it seems that in IE11 these selectors are not enough. Even adding custom -ms-user-select: none; doesn't fix the problem: the tiles selection keeps happening.
To remove this visual problem, there is a work-around that could be applied, which is adding this css:
Oh gosh, not another IE11 bug. And it's supposed to honour user-select:nonesince IE10.
Setting the background on the ::selection pseudo-element of the tiles seems elegant enough for the circumstances. Would you mind creating a PR with that?
Steps to reproduce
Expected behavior
No tiles are selected
Current behavior
Tiles are selected, and they appear in a blue color, like this:
Environment
Additional context
There is a piece of css code in Leaflet 1.4 that theoretically prevents tiles from being "selectable" (thus blue):
But it seems that in IE11 these selectors are not enough. Even adding custom
-ms-user-select: none;
doesn't fix the problem: the tiles selection keeps happening.To remove this visual problem, there is a work-around that could be applied, which is adding this css:
The text was updated successfully, but these errors were encountered: