| 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 .tile-page { | 5 .tile-page { |
| 6 -webkit-box-orient: vertical; | 6 -webkit-box-orient: vertical; |
| 7 display: -webkit-box; | 7 display: -webkit-box; |
| 8 height: 100%; | 8 height: 100%; |
| 9 position: relative; | 9 position: relative; |
| 10 width: 100%; | 10 width: 100%; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 } | 120 } |
| 121 | 121 |
| 122 .hovering-on-trash { | 122 .hovering-on-trash { |
| 123 opacity: 0.6; | 123 opacity: 0.6; |
| 124 } | 124 } |
| 125 | 125 |
| 126 .animating-tile-page .top-margin { | 126 .animating-tile-page .top-margin { |
| 127 -webkit-transition: margin-bottom 200ms; | 127 -webkit-transition: margin-bottom 200ms; |
| 128 } | 128 } |
| 129 | 129 |
| 130 .animating-tile-page #notification-container { | |
| 131 -webkit-transition: margin 200ms, opacity 200ms; | |
| 132 } | |
| 133 | |
| 134 @-webkit-keyframes bounce { | 130 @-webkit-keyframes bounce { |
| 135 0% { | 131 0% { |
| 136 -webkit-transform: scale(0, 0); | 132 -webkit-transform: scale(0, 0); |
| 137 } | 133 } |
| 138 | 134 |
| 139 60% { | 135 60% { |
| 140 -webkit-transform: scale(1.2, 1.2); | 136 -webkit-transform: scale(1.2, 1.2); |
| 141 } | 137 } |
| 142 | 138 |
| 143 100% { | 139 100% { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 180 |
| 185 /** Scrollbars ****************************************************************/ | 181 /** Scrollbars ****************************************************************/ |
| 186 | 182 |
| 187 .tile-page-content::-webkit-scrollbar { | 183 .tile-page-content::-webkit-scrollbar { |
| 188 width: 13px; | 184 width: 13px; |
| 189 } | 185 } |
| 190 | 186 |
| 191 .tile-page-content::-webkit-scrollbar-button { | 187 .tile-page-content::-webkit-scrollbar-button { |
| 192 display: none; | 188 display: none; |
| 193 } | 189 } |
| OLD | NEW |