Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
11ee1633
Commit
11ee1633
authored
12 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
fixes
#5257
: add data-original-title attribute selector to abbr element
parent
dd8b745b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/assets/css/bootstrap.css
+2
-1
docs/assets/css/bootstrap.css
less/type.less
+3
-1
less/type.less
with
5 additions
and
2 deletions
+5
-2
docs/assets/css/bootstrap.css
+
2
-
1
View file @
11ee1633
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
less/type.less
+
3
-
1
View file @
11ee1633
...
...
@@ -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;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment