Commit e37e06d7 authored by Mark Otto's avatar Mark Otto

Fixes #14443: Only transition what needs transitioning for thumbnails to avoid...

Fixes #14443: Only transition what needs transitioning for thumbnails to avoid Safari/Chrome render bug
parent fe896923
...@@ -4680,9 +4680,9 @@ a.list-group-item.active > .badge, ...@@ -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 {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -12,7 +12,7 @@ ...@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment