Index: chrome/browser/resources/local_ntp/local_ntp.css |
diff --git a/chrome/browser/resources/local_ntp/local_ntp.css b/chrome/browser/resources/local_ntp/local_ntp.css |
index cdc6ae41bca186d53f51a953726eb06216a8a2ba..200f826e562954c51644de23fc14ddd5a2b97d40 100644 |
--- a/chrome/browser/resources/local_ntp/local_ntp.css |
+++ b/chrome/browser/resources/local_ntp/local_ntp.css |
@@ -137,48 +137,31 @@ body.fakebox-focused #cursor { |
} |
#mv-tiles { |
- /* Use GPU compositing if available. */ |
- -webkit-transform: translate3d(0, 0, 0); |
- height: 260px; |
- overflow: hidden; |
- padding: 0 1em; |
- white-space: nowrap; |
- width: 304px; |
+ height: calc(2 * 138px); |
+ line-height: 138px; |
+ margin: 0; |
+ position: relative; |
} |
@media only screen and (min-width:660px) { |
#fakebox { |
- width: 458px; |
+ width: 478px; |
beaudoin
2014/07/24 15:24:36
Did you really want to change the size of the fake
huangs
2014/07/24 19:33:11
This whole section is redundant, since we use JS t
|
} |
#mv-tiles { |
- width: 460px; |
+ width: 480px; |
} |
} |
@media only screen and (min-width:820px) { |
#fakebox { |
- width: 618px; |
+ width: 638px; |
beaudoin
2014/07/24 15:24:36
Ditto.
huangs
2014/07/24 19:33:11
Acknowledged.
|
} |
#mv-tiles { |
- width: 620px; |
+ width: 640px; |
} |
} |
-.mv-row { |
- margin-bottom: 50px; |
-} |
- |
-.mv-row:last-child { |
- margin-bottom: 0; |
-} |
- |
-.mv-tile:first-child { |
- -webkit-margin-start: -1px; |
-} |
- |
.mv-tile { |
- -webkit-margin-start: 20px; |
- -webkit-transform: translate3d(0, 0, 0); |
-webkit-transition-duration: 200ms; |
-webkit-transition-property: -webkit-transform, margin, opacity, width; |
background: -webkit-linear-gradient(#f2f2f2, #e8e8e8); |
@@ -187,6 +170,10 @@ body.fakebox-focused #cursor { |
box-shadow: inset 0 2px 3px rgba(0, 0, 0, .09); |
display: inline-block; |
height: 83px; |
+ margin-left: 10px; |
+ margin-right: 10px; |
+ position: relative; |
+ vertical-align: top; |
width: 138px; |
} |