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

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

Issue 10867021: NTP5: Improving the Tile Page resize logic (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Improving comments Created 8 years, 4 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
Index: chrome/browser/resources/ntp_search/tile_page.css
diff --git a/chrome/browser/resources/ntp_search/tile_page.css b/chrome/browser/resources/ntp_search/tile_page.css
index 6fc58a019fe66e6a1d217517d29ae3f841f73c8f..7d5efe29e68c33f15d7ef9d4a104083bd4f71a34 100644
--- a/chrome/browser/resources/ntp_search/tile_page.css
+++ b/chrome/browser/resources/ntp_search/tile_page.css
@@ -33,7 +33,7 @@
}
.tile-row {
- -webkit-transition: opacity 200ms ease-in-out;
+ -webkit-transition: opacity 200ms;
height: 105px;
text-align: start;
white-space: nowrap;
@@ -50,7 +50,7 @@
.animate-page-height {
/* TODO(pedrosimonetti): Confirm the easing function with Marcin. */
- -webkit-transition: height 200ms ease-in-out;
+ -webkit-transition: height 200ms;
}
/* -----------------------------------------------------------------------------
@@ -72,7 +72,7 @@
----------------------------------------------------------------------------- */
.animate-grid-width .tile-cell {
- -webkit-transition: margin 200ms ease-out;
+ -webkit-transition: margin 200ms;
-webkit-transition-property: margin, opacity, width;
}
@@ -98,4 +98,4 @@
.tile-grid .hide-row .tile-cell {
opacity: 1;
-}
+}

Powered by Google App Engine
This is Rietveld 408576698