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

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

Issue 15825003: This CL removes an invalid CSS property value and replaces it with the initial value. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove the invalid line of CSS as 'default' is not a valid property value. Created 7 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 -webkit-transform: scale(1, 1); 154 -webkit-transform: scale(1, 1);
155 } 155 }
156 156
157 60% { 157 60% {
158 -webkit-animation-timing-function: ease-in; 158 -webkit-animation-timing-function: ease-in;
159 -webkit-transform: scale(1.3, 0.02); 159 -webkit-transform: scale(1.3, 0.02);
160 opacity: 1; 160 opacity: 1;
161 } 161 }
162 162
163 90% { 163 90% {
164 -webkit-animation-timing-function: default;
165 -webkit-transform: scale(0.3, 0.02); 164 -webkit-transform: scale(0.3, 0.02);
166 opacity: 0.7; 165 opacity: 0.7;
167 } 166 }
168 167
169 100% { 168 100% {
170 -webkit-animation-timing-function: linear; 169 -webkit-animation-timing-function: linear;
171 -webkit-transform: scale(0.3, 0.02); 170 -webkit-transform: scale(0.3, 0.02);
172 opacity: 0; 171 opacity: 0;
173 } 172 }
174 } 173 }
(...skipping 10 matching lines...) Expand all
185 184
186 /** Scrollbars ****************************************************************/ 185 /** Scrollbars ****************************************************************/
187 186
188 .tile-page-content::-webkit-scrollbar { 187 .tile-page-content::-webkit-scrollbar {
189 width: 13px; 188 width: 13px;
190 } 189 }
191 190
192 .tile-page-content::-webkit-scrollbar-button { 191 .tile-page-content::-webkit-scrollbar-button {
193 display: none; 192 display: none;
194 } 193 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698