diff options
| author | Mark Otto <[email protected]> | 2014-09-01 12:48:19 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-09-01 12:48:19 -0700 |
| commit | e37e06d73e8823c3e5fc062ae68d9d131c4c2bb4 (patch) | |
| tree | 294d800dc90538f19bd52bf1390222797126d2c7 /dist/css/bootstrap.css | |
| parent | fe896923fce4ec29f09055b4778ebc64eda8fccc (diff) | |
| download | bootstrap-e37e06d73e8823c3e5fc062ae68d9d131c4c2bb4.tar.xz bootstrap-e37e06d73e8823c3e5fc062ae68d9d131c4c2bb4.zip | |
Fixes #14443: Only transition what needs transitioning for thumbnails to avoid Safari/Chrome render bug
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 289e29580..607edc39a 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4680,9 +4680,9 @@ a.list-group-item.active > .badge, background-color: #fff; border: 1px solid #ddd; border-radius: 4px; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; + -webkit-transition: border .2s ease-in-out; + -o-transition: border .2s ease-in-out; + transition: border .2s ease-in-out; } .thumbnail > img, .thumbnail a > img { |
