mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Fixes #14443: Only transition what needs transitioning for thumbnails to avoid Safari/Chrome render bug
This commit is contained in:
parent
fe896923fc
commit
e37e06d73e
6
dist/css/bootstrap.css
vendored
6
dist/css/bootstrap.css
vendored
@ -4680,9 +4680,9 @@ a.list-group-item.active > .badge,
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
-webkit-transition: all .2s ease-in-out;
|
-webkit-transition: border .2s ease-in-out;
|
||||||
-o-transition: all .2s ease-in-out;
|
-o-transition: border .2s ease-in-out;
|
||||||
transition: all .2s ease-in-out;
|
transition: border .2s ease-in-out;
|
||||||
}
|
}
|
||||||
.thumbnail > img,
|
.thumbnail > img,
|
||||||
.thumbnail a > img {
|
.thumbnail a > img {
|
||||||
|
2
dist/css/bootstrap.css.map
vendored
2
dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@ -12,7 +12,7 @@
|
|||||||
background-color: @thumbnail-bg;
|
background-color: @thumbnail-bg;
|
||||||
border: 1px solid @thumbnail-border;
|
border: 1px solid @thumbnail-border;
|
||||||
border-radius: @thumbnail-border-radius;
|
border-radius: @thumbnail-border-radius;
|
||||||
.transition(all .2s ease-in-out);
|
.transition(border .2s ease-in-out);
|
||||||
|
|
||||||
> img,
|
> img,
|
||||||
a > img {
|
a > img {
|
||||||
|
Loading…
Reference in New Issue
Block a user