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

Side by Side Diff: chrome/browser/resources/local_ntp/local_ntp_fast.css

Issue 1052993012: [Local NTP] Fix fast icon NTP height. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 /* TODO: Need to discuss with NTP folks before we remove font-family from the 5 /* TODO: Need to discuss with NTP folks before we remove font-family from the
6 * body tag. */ 6 * body tag. */
7 body { 7 body {
8 background-attachment: fixed !important; 8 background-attachment: fixed !important;
9 background-color: white; 9 background-color: white;
10 cursor: default; 10 cursor: default;
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 } 183 }
184 184
185 .thumb-ntp #mv-tiles { 185 .thumb-ntp #mv-tiles {
186 height: calc(2 * 146px); 186 height: calc(2 * 146px);
187 line-height: 146px; 187 line-height: 146px;
188 } 188 }
189 189
190 .icon-ntp #mv-tiles { 190 .icon-ntp #mv-tiles {
191 background: rgba(255,255,255,0.2); 191 background: rgba(255,255,255,0.2);
192 border-radius: 4px; 192 border-radius: 4px;
193 height: calc(2 * 120px); 193 height: calc(2 * 112px);
194 padding: calc(36px - 18px) calc(36px - 18px - 12px); 194 padding: calc(36px - 18px) calc(36px - 18px - 12px);
195 } 195 }
196 196
197 .icon-ntp.dark #mv-tiles { 197 .icon-ntp.dark #mv-tiles {
198 background: rgba(0,0,0,0.4); 198 background: rgba(0,0,0,0.4);
199 } 199 }
200 200
201 .default-theme.icon-ntp #mv-tiles { 201 .default-theme.icon-ntp #mv-tiles {
202 background: none; 202 background: none;
203 } 203 }
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 html[dir=rtl] #recent-tabs { 321 html[dir=rtl] #recent-tabs {
322 left: 8px; 322 left: 8px;
323 right: auto; 323 right: auto;
324 } 324 }
325 325
326 #mv-single { 326 #mv-single {
327 border: none; 327 border: none;
328 height: 100%; 328 height: 100%;
329 width: 100%; 329 width: 100%;
330 } 330 }
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