Index: chrome/browser/resources/ntp_search/new_tab.css |
diff --git a/chrome/browser/resources/ntp_search/new_tab.css b/chrome/browser/resources/ntp_search/new_tab.css |
index a079bde5fed302b97d5af3d8e1a98581405814a0..e74570560185ed42bcf28e2f7cf3492ec523687f 100644 |
--- a/chrome/browser/resources/ntp_search/new_tab.css |
+++ b/chrome/browser/resources/ntp_search/new_tab.css |
@@ -8,22 +8,28 @@ |
body { |
background: whiteSmoke; |
- /* TODO(pedrosimonetti): Confirm with designers/engineers what do we want |
- * to do regarding font family, once AFAIK we want to use Arial always. */ |
- font-family: Arial; |
margin: 0; |
overflow: hidden; |
padding: 0; |
} |
#card-slider-frame { |
+ -webkit-transition: opacity 250ms, -webkit-transform 250ms; |
bottom: 0; |
+ /* TODO(pedrosimonetti): Confirm with designers/engineers what do we want |
Dan Beam
2012/08/28 22:55:34
nit: missing an asterisk here
/* Blah blah blah
pedrosimonetti2
2012/08/28 23:04:44
Done. I was unsure whether or not the asterisk sho
|
+ to do regarding font family, once AFAIK we want to use Arial always. */ |
+ font-family: Arial; |
Dan Beam
2012/08/28 22:55:34
so this will not apply to NTP4, correct?
pedrosimonetti2
2012/08/28 23:04:44
Correct. This stylesheet lives on the ntp_search d
Evan Stade
2012/08/28 23:08:24
I don't think that you want Arial here. We had a l
pedrosimonetti2
2012/08/28 23:47:28
I thought we had a different conclusion. I thought
Evan Stade
2012/08/29 21:53:01
was there any discussion of what makes ntp5 differ
Evan Stade
2012/08/29 21:54:05
note that the native omnibox and suggestions also
|
overflow: hidden; |
position: absolute; |
text-align: center; |
width: 100%; |
} |
+.hide-card-slider { |
+ -webkit-transform: translate3d(0, 170px, 0); |
+ opacity: 0; |
+} |
+ |
#page-list { |
display: -webkit-box; |
position: static; |
@@ -33,4 +39,4 @@ body { |
height: 14px; |
margin: 8px auto 30px; |
text-align: center; |
-} |
+} |