mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-28 10:24:19 +01:00
fixes #5257: add data-original-title attribute selector to abbr element
This commit is contained in:
parent
dd8b745b88
commit
11ee1633b4
3
docs/assets/css/bootstrap.css
vendored
3
docs/assets/css/bootstrap.css
vendored
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user