OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
6 .app { | 6 .app { |
7 position: absolute; | 7 position: absolute; |
8 text-align: center; | 8 text-align: center; |
9 } | 9 } |
10 | 10 |
11 .app-contents > span { | 11 .app-contents > span { |
| 12 cursor: pointer; |
12 display: block; | 13 display: block; |
13 overflow: hidden; | 14 overflow: hidden; |
14 text-decoration: none; | 15 text-decoration: none; |
15 text-overflow: ellipsis; | 16 text-overflow: ellipsis; |
16 white-space: nowrap; | 17 white-space: nowrap; |
17 } | 18 } |
18 | 19 |
19 /* TODO(estade): hover effect? press effect? */ | 20 /* TODO(estade): hover effect? press effect? */ |
20 .app-contents > img { | 21 .app-contents > img { |
21 cursor: pointer; | 22 cursor: pointer; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 white-space: nowrap; | 72 white-space: nowrap; |
72 -webkit-border-image: url('../ntp/g-button-chocobo.png') 6 10 12 6; | 73 -webkit-border-image: url('../ntp/g-button-chocobo.png') 6 10 12 6; |
73 } | 74 } |
74 | 75 |
75 .apps-promo-hide { | 76 .apps-promo-hide { |
76 font-size: 90%; | 77 font-size: 90%; |
77 margin-top: 2px; | 78 margin-top: 2px; |
78 text-decoration: underline; | 79 text-decoration: underline; |
79 -webkit-margin-start: 5px; | 80 -webkit-margin-start: 5px; |
80 } | 81 } |
OLD | NEW |