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

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

Issue 10909236: Add support for favicon scale factor in WebUI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix HandleGetFaviconDominantColor. Created 8 years, 3 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 .most-visited { 5 .most-visited {
6 position: absolute; 6 position: absolute;
7 z-index: 0; 7 z-index: 0;
8 } 8 }
9 9
10 .most-visited { 10 .most-visited {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 opacity: 1; 56 opacity: 1;
57 } 57 }
58 58
59 .most-visited .close-button:hover { 59 .most-visited .close-button:hover {
60 -webkit-transition: none; 60 -webkit-transition: none;
61 } 61 }
62 62
63 .most-visited .favicon { 63 .most-visited .favicon {
64 -webkit-margin-start: 5px; 64 -webkit-margin-start: 5px;
65 background: no-repeat left 50%; 65 background: no-repeat left 50%;
66 background-size: 16px;
66 bottom: 7px; 67 bottom: 7px;
67 box-sizing: border-box; 68 box-sizing: border-box;
68 display: block; 69 display: block;
69 height: 16px; 70 height: 16px;
70 position: absolute; 71 position: absolute;
71 width: 16px; 72 width: 16px;
72 } 73 }
73 74
74 html[dir='rtl'] .most-visited .favicon { 75 html[dir='rtl'] .most-visited .favicon {
75 background-position-x: right; 76 background-position-x: right;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 * Override opacity of the tile to 1, so that the new tile animation 177 * Override opacity of the tile to 1, so that the new tile animation
177 * occurs simultaneously with the trash animation. */ 178 * occurs simultaneously with the trash animation. */
178 .tile.dragging.finishing-drag { 179 .tile.dragging.finishing-drag {
179 opacity: 1; 180 opacity: 1;
180 } 181 }
181 182
182 /* Don't display the new tile until there's something to show. */ 183 /* Don't display the new tile until there's something to show. */
183 .blacklisted { 184 .blacklisted {
184 opacity: 0; 185 opacity: 0;
185 } 186 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/history/history.js ('k') | chrome/browser/resources/ntp4/most_visited_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698