// Abbreviations
-//
-// 1. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
-// 2. Add explicit cursor to indicate changed behavior.
-// 3. Prevent the text-decoration to be skipped.
-
-abbr[title] {
- text-decoration: underline dotted; // 1
- cursor: help; // 2
- text-decoration-skip-ink: none; // 3
+
+@media (hover: none) {
+ abbr[title] {
+ text-decoration: none;
+ }
+}
+
+@media (hover: hover) {
+ // 1. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
+ // 2. Add explicit cursor to indicate changed behavior.
+ // 3. Prevent the text-decoration to be skipped.
+
+ abbr[title] {
+ text-decoration: underline dotted; // 1
+ cursor: help; // 2
+ text-decoration-skip-ink: none; // 3
+ }
}