From 4c588e8693d6180982aa0742fd57d5a34a33236b Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Thu, 30 Jun 2011 11:11:06 -0400 Subject: [PATCH] css : add .isotope-item.no-transition - required for new inserting animation with CSS transitions --- css/style.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index 6ac6afa..5b386c6 100644 --- a/css/style.css +++ b/css/style.css @@ -32,17 +32,20 @@ transition-property: transform, opacity; } -/* End: Recommended Isotope styles */ - /**** disabling Isotope CSS3 transitions ****/ .isotope.no-transition, -.isotope.no-transition .isotope-item { +.isotope.no-transition .isotope-item, +.isotope .isotope-item.no-transition { -webkit-transition-duration: 0s; -moz-transition-duration: 0s; transition-duration: 0s; } +/* End: Recommended Isotope styles */ + + + /* disable CSS transitions for containers with infinite scrolling*/ .isotope.infinite-scrolling { -webkit-transition: none;