| OLD | NEW |
| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 * Override opacity of the tile to 1, so that the new tile animation | 176 * Override opacity of the tile to 1, so that the new tile animation |
| 177 * occurs simultaneously with the trash animation. */ | 177 * occurs simultaneously with the trash animation. */ |
| 178 .tile.dragging.finishing-drag { | 178 .tile.dragging.finishing-drag { |
| 179 opacity: 1; | 179 opacity: 1; |
| 180 } | 180 } |
| 181 | 181 |
| 182 /* Don't display the new tile until there's something to show. */ | 182 /* Don't display the new tile until there's something to show. */ |
| 183 .blacklisted { | 183 .blacklisted { |
| 184 opacity: 0; | 184 opacity: 0; |
| 185 } | 185 } |
| OLD | NEW |