]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #5257: add data-original-title attribute selector to abbr element
authorMark Otto <markotto@twitter.com>
Wed, 3 Oct 2012 16:36:45 +0000 (09:36 -0700)
committerMark Otto <markotto@twitter.com>
Wed, 3 Oct 2012 16:36:45 +0000 (09:36 -0700)
docs/assets/css/bootstrap.css
less/type.less

index b7621054e847571073e88072e07b6dfa4c741c46..2155b91cd887f97541e333717bd3ae566fecd72d 100644 (file)
@@ -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;
 }
index 2d913dde3eecde3c85a5a3e2c7effbc25741eab1..3b428e79de6d6e3c13c5873500aa4a13c9c76d64 100644 (file)
@@ -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;
 }