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

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

Issue 8352034: ntp: fix most visited close button (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« 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) 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 html[dir=rtl] .most-visited .close-button { 49 html[dir=rtl] .most-visited .close-button {
50 left: 0; 50 left: 0;
51 right: auto; 51 right: auto;
52 } 52 }
53 53
54 .most-visited:hover .close-button { 54 .most-visited:hover .close-button {
55 opacity: 1; 55 opacity: 1;
56 -webkit-transition-delay: 0.5s; 56 -webkit-transition-delay: 0.5s;
57 } 57 }
58 58
59 .close-button:hover { 59 .most-visited .close-button:hover {
60 -webkit-transition-delay: 0; 60 -webkit-transition: none;
61 } 61 }
62 62
63 .most-visited .favicon { 63 .most-visited .favicon {
64 background: no-repeat 5px 50%; 64 background: no-repeat 5px 50%;
65 bottom: 7px; 65 bottom: 7px;
66 box-sizing: border-box; 66 box-sizing: border-box;
67 display: block; 67 display: block;
68 height: 16px; 68 height: 16px;
69 position: absolute; 69 position: absolute;
70 width: 100%; 70 width: 100%;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 * Override opacity of the tile to 1, so that the new tile animation 160 * Override opacity of the tile to 1, so that the new tile animation
161 * occurs simultaneously with the trash animation. */ 161 * occurs simultaneously with the trash animation. */
162 .tile.dragging.finishing-drag { 162 .tile.dragging.finishing-drag {
163 opacity: 1; 163 opacity: 1;
164 } 164 }
165 165
166 /* Don't display the new tile until there's something to show. */ 166 /* Don't display the new tile until there's something to show. */
167 .blacklisted { 167 .blacklisted {
168 opacity: 0; 168 opacity: 0;
169 } 169 }
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