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

Unified Diff: chrome/browser/resources/ntp4/tile_page.css

Issue 2689163002: Remove webkit prefixes for CSS Animation in chrome/ styles (Closed)
Patch Set: rebase Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/local_ntp/local_ntp.css ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ntp4/tile_page.css
diff --git a/chrome/browser/resources/ntp4/tile_page.css b/chrome/browser/resources/ntp4/tile_page.css
index 982f0d682e4c166947e64214c1ac5d4a091e1187..0abc043507c9ecccb6d51cce41ad73e7079648e9 100644
--- a/chrome/browser/resources/ntp4/tile_page.css
+++ b/chrome/browser/resources/ntp4/tile_page.css
@@ -127,7 +127,7 @@
-webkit-transition: margin-bottom 200ms;
}
-@-webkit-keyframes bounce {
+@keyframes bounce {
0% {
transform: scale(0, 0);
}
@@ -142,16 +142,16 @@
}
.tile > .new-tile-contents {
- -webkit-animation: bounce 500ms ease-in-out;
+ animation: bounce 500ms ease-in-out;
}
-@-webkit-keyframes blipout {
+@keyframes blipout {
0% {
transform: scale(1, 1);
}
60% {
- -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
opacity: 1;
transform: scale(1.3, 0.02);
}
@@ -162,15 +162,15 @@
}
100% {
- -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
opacity: 0;
transform: scale(0.3, 0.02);
}
}
.tile > .removing-tile-contents {
- -webkit-animation: blipout 300ms;
- -webkit-animation-fill-mode: forwards;
+ animation: blipout 300ms;
+ animation-fill-mode: forwards;
pointer-events: none;
}
« no previous file with comments | « chrome/browser/resources/local_ntp/local_ntp.css ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698