]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Prevent text decoration skip inc and reorder comments (#27673)
authorMartijn Cuppens <martijn.cuppens@gmail.com>
Sun, 18 Nov 2018 08:09:41 +0000 (09:09 +0100)
committerXhmikosR <xhmikosr@gmail.com>
Sun, 18 Nov 2018 08:09:41 +0000 (10:09 +0200)
scss/_reboot.scss

index 6c294ce5a088ece4c7fe3d47b68939dec9cffc54..8c727d029c45592419c50fc8163d95357f383529 100644 (file)
@@ -111,17 +111,19 @@ p {
 
 // Abbreviations
 //
-// 1. Remove the bottom border in Firefox 39-.
+// 1. Duplicate behavior to the data-* attribute for our tooltip plugin
 // 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 // 3. Add explicit cursor to indicate changed behavior.
-// 4. Duplicate behavior to the data-* attribute for our tooltip plugin
+// 4. Remove the bottom border in Firefox 39-.
+// 5. Prevent the text-decoration to be skipped.
 
 abbr[title],
-abbr[data-original-title] { // 4
+abbr[data-original-title] { // 1
   text-decoration: underline; // 2
   text-decoration: underline dotted; // 2
   cursor: help; // 3
-  border-bottom: 0; // 1
+  border-bottom: 0; // 4
+  text-decoration-skip-ink: none; // 5
 }
 
 address {