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

Side by Side Diff: chrome/browser/resources/ntp4/tile_page.css

Issue 9318017: [NTP4] Redesign of notification promo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .tile-page { 5 .tile-page {
6 -webkit-box-orient: vertical; 6 -webkit-box-orient: vertical;
7 display: -webkit-box; 7 display: -webkit-box;
8 height: 100%; 8 height: 100%;
9 position: relative; 9 position: relative;
10 width: 100%; 10 width: 100%;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 } 102 }
103 103
104 .hovering-on-trash { 104 .hovering-on-trash {
105 opacity: 0.6; 105 opacity: 0.6;
106 } 106 }
107 107
108 .animating-tile-page .top-margin { 108 .animating-tile-page .top-margin {
109 -webkit-transition: margin-bottom 200ms; 109 -webkit-transition: margin-bottom 200ms;
110 } 110 }
111 111
112 .animating-tile-page #notification-container {
113 -webkit-transition: margin 200ms, opacity 200ms;
114 }
115
112 @-webkit-keyframes bounce { 116 @-webkit-keyframes bounce {
113 0% { 117 0% {
114 -webkit-transform: scale(0, 0); 118 -webkit-transform: scale(0, 0);
115 } 119 }
116 120
117 60% { 121 60% {
118 -webkit-transform: scale(1.2, 1.2); 122 -webkit-transform: scale(1.2, 1.2);
119 } 123 }
120 124
121 100% { 125 100% {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 166
163 /** Scrollbars ****************************************************************/ 167 /** Scrollbars ****************************************************************/
164 168
165 .tile-page-content::-webkit-scrollbar { 169 .tile-page-content::-webkit-scrollbar {
166 width: 13px; 170 width: 13px;
167 } 171 }
168 172
169 .tile-page-content::-webkit-scrollbar-button { 173 .tile-page-content::-webkit-scrollbar-button {
170 display: none; 174 display: none;
171 } 175 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/page_list_view.js ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698