mdx-editor / editor

A rich text editor React component for markdown
https://mdxeditor.dev
MIT License
1.63k stars 131 forks source link

fix: ignore :hover css style on touch devices. #439

Closed braincore closed 2 months ago

braincore commented 2 months ago

Using iOS safari, if I open an mdx-editor page and do the following:

  1. select the bold option
  2. deselect the bold option

The result will be the bold option appears to be selected because its "hover" styling has been triggered. This is a common issue with touch devices that do not support hover. This change gates :hover behind media queries that filter only for devices that support it.