Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions scss/_tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Loading