Skip to content

Commit 3f422bf

Browse files
MartijnCuppensXhmikosR
authored andcommitted
Prevent text decoration skip inc and reorder comments (#27673)
1 parent 12ae122 commit 3f422bf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

scss/_reboot.scss

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,17 +111,19 @@ p {
111111

112112
// Abbreviations
113113
//
114-
// 1. Remove the bottom border in Firefox 39-.
114+
// 1. Duplicate behavior to the data-* attribute for our tooltip plugin
115115
// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
116116
// 3. Add explicit cursor to indicate changed behavior.
117-
// 4. Duplicate behavior to the data-* attribute for our tooltip plugin
117+
// 4. Remove the bottom border in Firefox 39-.
118+
// 5. Prevent the text-decoration to be skipped.
118119

119120
abbr[title],
120-
abbr[data-original-title] { // 4
121+
abbr[data-original-title] { // 1
121122
text-decoration: underline; // 2
122123
text-decoration: underline dotted; // 2
123124
cursor: help; // 3
124-
border-bottom: 0; // 1
125+
border-bottom: 0; // 4
126+
text-decoration-skip-ink: none; // 5
125127
}
126128

127129
address {

0 commit comments

Comments
 (0)