mirror of https://github.com/twbs/bootstrap.git
Allow abbr styling with tooltip, fixes #39026
This commit is contained in:
parent
1184417397
commit
5eeceebb78
|
@ -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…
Reference in New Issue