Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } | |
| OLD | NEW |