diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index b7621054e847571073e88072e07b6dfa4c741c46..2155b91cd887f97541e333717bd3ae566fecd72d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -800,7 +800,8 @@ hr { border-bottom: 1px solid #ffffff; } -abbr[title] { +abbr[title], +abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #999999; } diff --git a/less/type.less b/less/type.less index 2d913dde3eecde3c85a5a3e2c7effbc25741eab1..3b428e79de6d6e3c13c5873500aa4a13c9c76d64 100644 --- a/less/type.less +++ b/less/type.less @@ -159,7 +159,9 @@ hr { } // Abbreviations and acronyms -abbr[title] { +abbr[title], +// Added data-* attribute to help out our tooltip plugin, per https://github.com/twitter/bootstrap/issues/5257 +abbr[data-original-title] { cursor: help; border-bottom: 1px dotted @grayLight; }