Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set
user-select: text
for .ol-selectable
In order to allow a user to select content within an element with the `.ol-selectable` class the `user-select` CSS property should be `text`. The current value of `auto` results in a computed value of `none` due to the rule `.ol-viewport, .ol-unselectable` specifying `user-select: none`. According to the [the specification](https://www.w3.org/TR/css-ui-4/#valdef-user-select-auto): > if the computed value of `user-select` on the parent of this element is `none`, the computed value is `none` Tested manually on Chromium, Firefox and IE11.
- Loading branch information