From: Mark Otto Date: Sat, 7 May 2022 16:16:57 +0000 (-0700) Subject: Remove leftover abbr styles in Reboot for tooltips X-Git-Tag: v5.2.0-beta1~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=619a65c55af8c49b6cd591eac511fa322afa41a5;p=thirdparty%2Fbootstrap.git Remove leftover abbr styles in Reboot for tooltips /cc @GeoSot --- diff --git a/scss/_reboot.scss b/scss/_reboot.scss index ed422f7538..8aa72115b6 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 }