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

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

Issue 8817011: Revert 113137 - ntp: remove default thumbnail for most visited (broken camera) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/resources/ntp4/new_tab_theme.css » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 5
6 .most-visited { 6 .most-visited {
7 position: absolute; 7 position: absolute;
8 } 8 }
9 9
10 .most-visited { 10 .most-visited {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 height: 23px; 88 height: 23px;
89 overflow: hidden; 89 overflow: hidden;
90 padding-top: 8px; 90 padding-top: 8px;
91 text-align: center; 91 text-align: center;
92 text-overflow: ellipsis; 92 text-overflow: ellipsis;
93 white-space: nowrap; 93 white-space: nowrap;
94 } 94 }
95 95
96 .thumbnail { 96 .thumbnail {
97 background: no-repeat; 97 background: no-repeat;
98 /* This shows for missing thumbnails. */
99 background-color: #eee;
100 background-size: 100%; 98 background-size: 100%;
101 border-radius: 3px; 99 border-radius: 3px;
102 /* These max dimensions are not necessary, as the sizing logic in the .js 100 /* These max dimensions are not necessary, as the sizing logic in the .js
103 * should be sufficient, but they're here for extra insurance. We never want 101 * should be sufficient, but they're here for extra insurance. We never want
104 * to scale a thumbnail larger than this size. */ 102 * to scale a thumbnail larger than this size. */
105 max-height: 132px; 103 max-height: 132px;
106 max-width: 212px; 104 max-width: 212px;
107 -webkit-transition: opacity 150ms; 105 -webkit-transition: opacity 150ms;
108 } 106 }
109 107
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 * Override opacity of the tile to 1, so that the new tile animation 162 * Override opacity of the tile to 1, so that the new tile animation
165 * occurs simultaneously with the trash animation. */ 163 * occurs simultaneously with the trash animation. */
166 .tile.dragging.finishing-drag { 164 .tile.dragging.finishing-drag {
167 opacity: 1; 165 opacity: 1;
168 } 166 }
169 167
170 /* Don't display the new tile until there's something to show. */ 168 /* Don't display the new tile until there's something to show. */
171 .blacklisted { 169 .blacklisted {
172 opacity: 0; 170 opacity: 0;
173 } 171 }
OLDNEW
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/resources/ntp4/new_tab_theme.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698