This commit is contained in:
William Entriken 2025-05-01 16:10:07 -03:00 committed by GitHub
commit 65c6292745
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -117,3 +117,12 @@
background-color: var(--#{$prefix}tooltip-bg);
@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;
}