Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: chrome/browser/resources/ntp/apps.css

Issue 3396021: Fix bug where install animation would replay if something on the (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/new_new_tab.html ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Apps */ 1 /* Apps */
2 2
3 .app, 3 .app,
4 .app[new=installed] { 4 .app[new=installed] {
5 -webkit-box-sizing: border-box; 5 -webkit-box-sizing: border-box;
6 -webkit-perspective: 400; 6 -webkit-perspective: 400;
7 border-radius: 10px; 7 border-radius: 10px;
8 color: black; 8 color: black;
9 display: inline-block; 9 display: inline-block;
10 margin: 5px 3px; 10 margin: 5px 3px;
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 60% { 75 60% {
76 -webkit-transform: scale(1.2, 1.2); 76 -webkit-transform: scale(1.2, 1.2);
77 } 77 }
78 78
79 100% { 79 100% {
80 -webkit-transform: scale(1, 1); 80 -webkit-transform: scale(1, 1);
81 } 81 }
82 } 82 }
83 83
84 .app[new=new] { 84 html[install-animation-enabled=true] .app[new=new] {
85 opacity: 0; 85 opacity: 0;
86 } 86 }
87 87
88 .app[new=installed] { 88 html[install-animation-enabled=true] .app[new=installed] {
89 -webkit-animation: bounce .5s ease-in-out; 89 -webkit-animation: bounce .5s ease-in-out;
90 -webkit-transition: opacity .5s; 90 -webkit-transition: opacity .5s;
91 } 91 }
92 92
93 a[app-id=web-store-entry] { 93 a[app-id=web-store-entry] {
94 background-image: url("web_store_icon.png"); 94 background-image: url("web_store_icon.png");
95 } 95 }
96 96
97 menu > button.default { 97 menu > button.default {
98 font-weight: bold; 98 font-weight: bold;
99 } 99 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/new_new_tab.html ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698