]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove leftover abbr styles in Reboot for tooltips
authorMark Otto <markd.otto@gmail.com>
Sat, 7 May 2022 16:16:57 +0000 (09:16 -0700)
committerMark Otto <otto@github.com>
Mon, 9 May 2022 03:01:25 +0000 (20:01 -0700)
/cc @GeoSot

scss/_reboot.scss

index ed422f7538c710d7783d32eedf2d92f8c1008240..8aa72115b654261ee21b9c53717aec3ddcf3752a 100644 (file)
@@ -134,16 +134,14 @@ p {
 
 // Abbreviations
 //
-// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin
-// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
-// 3. Add explicit cursor to indicate changed behavior.
-// 4. Prevent the text-decoration to be skipped.
-
-abbr[title],
-abbr[data-bs-original-title] { // 1
-  text-decoration: underline dotted; // 2
-  cursor: help; // 3
-  text-decoration-skip-ink: none; // 4
+// 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
 }