diff options
| author | Mark Otto <[email protected]> | 2022-05-07 09:16:57 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2022-05-08 20:01:25 -0700 |
| commit | 619a65c55af8c49b6cd591eac511fa322afa41a5 (patch) | |
| tree | 471fb6ff438578c18e6f32ba10f8dc08dde660ab /scss/_reboot.scss | |
| parent | 4a682ab00a86adba2d38b0da7f3eaf1a6208f647 (diff) | |
| download | bootstrap-619a65c55af8c49b6cd591eac511fa322afa41a5.tar.xz bootstrap-619a65c55af8c49b6cd591eac511fa322afa41a5.zip | |
Remove leftover abbr styles in Reboot for tooltips
/cc @GeoSot
Diffstat (limited to 'scss/_reboot.scss')
| -rw-r--r-- | scss/_reboot.scss | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss index ed422f753..8aa72115b 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -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 } |
