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 .app { | 5 .app { |
6 outline: none; | 6 outline: none; |
7 position: absolute; | 7 position: absolute; |
8 text-align: center; | 8 text-align: center; |
9 } | 9 } |
10 | 10 |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 width: 12%; | 205 width: 12%; |
206 } | 206 } |
207 | 207 |
208 .app-install-hint-interior > div:first-child { | 208 .app-install-hint-interior > div:first-child { |
209 -webkit-transform: rotate(90deg); | 209 -webkit-transform: rotate(90deg); |
210 } | 210 } |
211 | 211 |
212 html.dragging-mode .app-install-hint { | 212 html.dragging-mode .app-install-hint { |
213 opacity: 0; | 213 opacity: 0; |
214 } | 214 } |
| 215 |
| 216 /* Move the notification lower on apps pages to account for the 16px of |
| 217 * transparency each app icon should have. */ |
| 218 .apps-page #notification-container { |
| 219 bottom: 15px; |
| 220 } |
OLD | NEW |