| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |