Commit 11ee1633 authored by Mark Otto's avatar Mark Otto

fixes #5257: add data-original-title attribute selector to abbr element

parent dd8b745b
...@@ -800,7 +800,8 @@ hr { ...@@ -800,7 +800,8 @@ hr {
border-bottom: 1px solid #ffffff; border-bottom: 1px solid #ffffff;
} }
abbr[title] { abbr[title],
abbr[data-original-title] {
cursor: help; cursor: help;
border-bottom: 1px dotted #999999; border-bottom: 1px dotted #999999;
} }
......
...@@ -159,7 +159,9 @@ hr { ...@@ -159,7 +159,9 @@ hr {
} }
// Abbreviations and acronyms // 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; cursor: help;
border-bottom: 1px dotted @grayLight; border-bottom: 1px dotted @grayLight;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment