aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <[email protected]>2018-11-18 09:09:41 +0100
committerXhmikosR <[email protected]>2018-11-18 10:09:41 +0200
commit3f422bfc888b8129c2ea96419d4480290041f520 (patch)
tree1b83f9b191e7788b302cefa69545c50e114d84ab
parent12ae122edab30d33c44b5662b6220521ceb7f264 (diff)
downloadbootstrap-3f422bfc888b8129c2ea96419d4480290041f520.tar.xz
bootstrap-3f422bfc888b8129c2ea96419d4480290041f520.zip
Prevent text decoration skip inc and reorder comments (#27673)
-rw-r--r--scss/_reboot.scss10
1 files changed, 6 insertions, 4 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index 6c294ce5a..8c727d029 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -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 {