Compare commits

...

2 Commits

Author SHA1 Message Date
William Entriken
e2ffd983e2
Merge 5eeceebb781eb6118b8e003f4a4ed0a66130bc23 into 8c975a4f0d22ef8828142729febce4696301a81a 2025-06-28 18:57:09 -07:00
William Entriken
5eeceebb78
Allow abbr styling with tooltip, fixes #39026 2025-04-29 10:44:18 -04:00

View File

@ -117,3 +117,12 @@
background-color: var(--#{$prefix}tooltip-bg); background-color: var(--#{$prefix}tooltip-bg);
@include border-radius(var(--#{$prefix}tooltip-border-radius)); @include border-radius(var(--#{$prefix}tooltip-border-radius));
} }
// Workaround for abbr when tooltip substitutes title for data-bs-original-title
//
// This matches the abbr styling in _reboot.scss
abbr[data-bs-original-title] {
text-decoration: underline dotted;
cursor: help;
text-decoration-skip-ink: none;
}