Skip to content
GitLab
Explore
Projects
Groups
Snippets
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
dbe8aed7
Commit
dbe8aed7
authored
12 years ago
by
Mark Otto
Browse files
Options
Download
Plain Diff
Merge pull request #6763 from rjregenold/2.3.0-wip
fixes jankiness with anchor tags in carousel.
parents
0bfbf144
2f44d8d2
1 merge request
!6821
Typeahead updater
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/carousel.less
+6
-5
less/carousel.less
with
8 additions
and
6 deletions
+8
-6
docs/assets/css/bootstrap.css
+
2
-
1
View file @
dbe8aed7
...
...
@@ -5919,7 +5919,8 @@ a.badge:hover {
transition
:
0.6s
ease-in-out
left
;
}
.carousel-inner
>
.item
>
img
{
.carousel-inner
>
.item
>
img
,
.carousel-inner
>
.item
>
a
>
img
{
display
:
block
;
line-height
:
1
;
}
...
...
This diff is collapsed.
Click to expand it.
less/carousel.less
+
6
-
5
View file @
dbe8aed7
...
...
@@ -21,12 +21,13 @@
display: none;
position: relative;
.transition(.6s ease-in-out left);
}
// Account for jankitude on images
> .item > img {
display: block;
line-height: 1;
// Account for jankitude on images
> img,
> a > img {
display: block;
line-height: 1;
}
}
> .active,
...
...
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
Menu
Explore
Projects
Groups
Snippets