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 .apps-page .tile-cell { | 5 .apps-page .tile-cell { |
6 -webkit-margin-start: 12px; | 6 -webkit-margin-start: 12px; |
7 margin-bottom: 12px; | 7 margin-bottom: 12px; |
8 } | 8 } |
9 | 9 |
10 .apps-page .tile-cell:first-child { | 10 .apps-page .tile-cell:first-child { |
11 -webkit-margin-start: 0; | 11 -webkit-margin-start: 0; |
12 } | 12 } |
13 | 13 |
14 .apps-page .app { | 14 .apps-page .app { |
15 display: block; | 15 display: block; |
16 height: 77px; | 16 height: 70px; |
17 outline: none; | 17 outline: none; |
18 text-align: center; | 18 text-align: center; |
19 width: 77px; | 19 width: 70px; |
20 } | 20 } |
21 | 21 |
22 .apps-page .app .title { | 22 .apps-page .app .title { |
23 color: #777; | 23 color: #777; |
24 font-size: 0.9166em; | 24 font-size: 0.9166em; |
| 25 margin-top: 2px; |
25 } | 26 } |
26 | 27 |
27 .app-contents { | 28 .app-contents { |
28 -webkit-transition: -webkit-transform 100ms; | 29 -webkit-transition: -webkit-transform 100ms; |
29 } | 30 } |
30 | 31 |
31 .app-contents:active:not(.suppress-active), | 32 .app-contents:active:not(.suppress-active), |
32 .app:not(.click-focus):focus .app-contents:not(.suppress-active), | 33 .app:not(.click-focus):focus .app-contents:not(.suppress-active), |
33 .drag-representation:not(.placing) .app-contents { | 34 .drag-representation:not(.placing) .app-contents { |
34 -webkit-transform: scale(1.1); | 35 -webkit-transform: scale(1.1); |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 | 125 |
125 .app .invisible { | 126 .app .invisible { |
126 visibility: hidden; | 127 visibility: hidden; |
127 } | 128 } |
128 | 129 |
129 /* Move the notification lower on apps pages to account for the 16px of | 130 /* Move the notification lower on apps pages to account for the 16px of |
130 * transparency each app icon should have. */ | 131 * transparency each app icon should have. */ |
131 .apps-page #notification-container { | 132 .apps-page #notification-container { |
132 bottom: 15px; | 133 bottom: 15px; |
133 } | 134 } |
OLD | NEW |