From 92464e9acbc960e08355d5983560de04a939c1f2 Mon Sep 17 00:00:00 2001 From: "aa@chromium.org" Date: Fri, 24 Sep 2010 00:49:36 +0000 Subject: Fix bug where install animation would replay if something on the same page was uninstalled. BUG=56454 TEST=Install one app, then another. Uninstall the first one. Second one's install animation should not replay. Review URL: http://codereview.chromium.org/3396021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60391 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/resources/ntp/apps.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/resources/ntp/apps.css') diff --git a/chrome/browser/resources/ntp/apps.css b/chrome/browser/resources/ntp/apps.css index 58f544a..a199154 100644 --- a/chrome/browser/resources/ntp/apps.css +++ b/chrome/browser/resources/ntp/apps.css @@ -81,11 +81,11 @@ } } -.app[new=new] { +html[install-animation-enabled=true] .app[new=new] { opacity: 0; } -.app[new=installed] { +html[install-animation-enabled=true] .app[new=installed] { -webkit-animation: bounce .5s ease-in-out; -webkit-transition: opacity .5s; } -- cgit v1.1