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

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: 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 8d99a27ff60cb5d5472128f513e492b7e80758c3..38a0684a39cf74d22f8fd67c6d2329388d365bf0 100644
--- a/chrome/browser/resources/ntp_search/tile_page.css
+++ b/chrome/browser/resources/ntp_search/tile_page.css
@@ -8,7 +8,7 @@
#page-list {
/* TODO(pedrosimonetti): Confirm the easing function with Marcin. */
- -webkit-transition: height 200ms ease-in-out;
+ -webkit-transition: height 200ms;
padding-bottom: 10px;
}
@@ -25,7 +25,7 @@
.tile-grid {
-webkit-transform: translate3d(0, 0, 0);
- -webkit-transition: width 200ms ease-in-out;
+ -webkit-transition: width 200ms;
display: block;
margin: 0 auto;
width: 732px;
@@ -33,12 +33,12 @@
.tile-grid-content {
-webkit-transform: translate3d(0, 0, 0);
- -webkit-transition: -webkit-transform 200ms ease-in-out;
+ -webkit-transition: -webkit-transform 200ms;
}
.tile-row {
-webkit-transform: translate3d(0, 0, 0);
- -webkit-transition: opacity 200ms ease-in-out;
+ -webkit-transition: opacity 200ms;
height: 105px;
text-align: start;
white-space: nowrap;
@@ -63,7 +63,7 @@
----------------------------------------------------------------------------- */
.animate-tile .tile-cell {
- -webkit-transition: margin 200ms ease-out;
+ -webkit-transition: margin 200ms;
-webkit-transition-property: margin, opacity, width;
}
@@ -89,4 +89,4 @@
.hide-row .tile-cell {
opacity: 1;
-}
+}

Powered by Google App Engine
This is Rietveld 408576698