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

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

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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/ntp4/new_tab.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 0abc043507c9ecccb6d51cce41ad73e7079648e9..786ef7c4dcf4e232fb4c6011e08d50478968be84 100644
--- a/chrome/browser/resources/ntp4/tile_page.css
+++ b/chrome/browser/resources/ntp4/tile_page.css
@@ -93,14 +93,14 @@
}
.tile.drag-representation {
- -webkit-transition: opacity 200ms;
pointer-events: none;
position: fixed;
+ transition: opacity 200ms;
z-index: 3;
}
.tile.drag-representation.placing > * {
- -webkit-transition: transform 200ms;
+ transition: transform 200ms;
}
/* When a drag finishes while we're not showing the page where the tile
@@ -110,13 +110,13 @@
}
.tile.drag-representation.deleting > * {
- -webkit-transition: transform 600ms;
transform: scale(0) rotate(360deg);
+ transition: transform 600ms;
}
.animating-tile-page .tile,
.tile.drag-representation.placing {
- -webkit-transition: left 200ms, right 200ms, top 200ms;
+ transition: left 200ms, right 200ms, top 200ms;
}
.hovering-on-trash {
@@ -124,7 +124,7 @@
}
.animating-tile-page .top-margin {
- -webkit-transition: margin-bottom 200ms;
+ transition: margin-bottom 200ms;
}
@keyframes bounce {
@@ -175,7 +175,7 @@
}
.tile-page:not(.selected-card) * {
- -webkit-transition: none !important;
+ transition: none !important;
}
/** Scrollbars ****************************************************************/
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.css ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698