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

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

Issue 7592001: ntp4: most visited dragging onto apps page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: most visited polish Created 9 years, 4 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) 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 display: block; 140 display: block;
141 position: relative; 141 position: relative;
142 z-index: 5; 142 z-index: 5;
143 -webkit-box-flex: 1; 143 -webkit-box-flex: 1;
144 -webkit-transition: background-color .15s; 144 -webkit-transition: background-color .15s;
145 } 145 }
146 146
147 .filler .thumbnail-wrapper { 147 .filler .thumbnail-wrapper {
148 visibility: visible; 148 visibility: visible;
149 } 149 }
150
151 /* 'restoring' is the state we are in after dropping on the trash can.
152 * Override opacity of the tile to 1, so that we new tile animation
Rick Byers 2011/08/08 15:24:15 s/we/the
Evan Stade 2011/08/08 18:26:58 Done.
153 * occurs simultaneously with the trash animation. */
154 .tile.restoring.restoring {
Rick Byers 2011/08/08 15:24:15 I assume the second .restoring is necessary to giv
Evan Stade 2011/08/08 18:26:58 yes, it's to override .tile.dragging
155 opacity: 1;
156 }
157
158 /* Don't display the new tile until there's something to show. */
159 .blacklisted {
160 opacity: 0;
161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698