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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 } | 102 } |
103 | 103 |
104 .hovering-on-trash { | 104 .hovering-on-trash { |
105 opacity: 0.6; | 105 opacity: 0.6; |
106 } | 106 } |
107 | 107 |
108 .animating-tile-page .top-margin { | 108 .animating-tile-page .top-margin { |
109 -webkit-transition: margin-bottom 200ms; | 109 -webkit-transition: margin-bottom 200ms; |
110 } | 110 } |
111 | 111 |
| 112 .animating-tile-page #notification-container { |
| 113 -webkit-transition: margin 200ms, opacity 200ms; |
| 114 } |
| 115 |
112 @-webkit-keyframes bounce { | 116 @-webkit-keyframes bounce { |
113 0% { | 117 0% { |
114 -webkit-transform: scale(0, 0); | 118 -webkit-transform: scale(0, 0); |
115 } | 119 } |
116 | 120 |
117 60% { | 121 60% { |
118 -webkit-transform: scale(1.2, 1.2); | 122 -webkit-transform: scale(1.2, 1.2); |
119 } | 123 } |
120 | 124 |
121 100% { | 125 100% { |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 | 166 |
163 /** Scrollbars ****************************************************************/ | 167 /** Scrollbars ****************************************************************/ |
164 | 168 |
165 .tile-page-content::-webkit-scrollbar { | 169 .tile-page-content::-webkit-scrollbar { |
166 width: 13px; | 170 width: 13px; |
167 } | 171 } |
168 | 172 |
169 .tile-page-content::-webkit-scrollbar-button { | 173 .tile-page-content::-webkit-scrollbar-button { |
170 display: none; | 174 display: none; |
171 } | 175 } |
OLD | NEW |