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 |
(...skipping 12 matching lines...) Expand all Loading... |
23 margin-left: auto; | 23 margin-left: auto; |
24 margin-right: auto; | 24 margin-right: auto; |
25 /* -webkit-mask-image set by JavaScript to the image source */ | 25 /* -webkit-mask-image set by JavaScript to the image source */ |
26 -webkit-mask-size: 100% 100%; | 26 -webkit-mask-size: 100% 100%; |
27 } | 27 } |
28 | 28 |
29 .app-context-menu > button:first-child { | 29 .app-context-menu > button:first-child { |
30 font-weight: bold; | 30 font-weight: bold; |
31 } | 31 } |
32 | 32 |
| 33 .app-context-menu { |
| 34 z-index: 1000; |
| 35 } |
| 36 |
33 /* Link (bookmark) tiles. */ | 37 /* Link (bookmark) tiles. */ |
34 .link { | 38 .link { |
35 display: -webkit-box; | 39 display: -webkit-box; |
36 position: absolute; | 40 position: absolute; |
37 -webkit-box-orient: vertical; | 41 -webkit-box-orient: vertical; |
38 } | 42 } |
39 | 43 |
40 .link > * { | 44 .link > * { |
41 -webkit-box-flex: 1; | 45 -webkit-box-flex: 1; |
42 } | 46 } |
43 | 47 |
44 .link span { | 48 .link span { |
45 display: block; | 49 display: block; |
46 } | 50 } |
OLD | NEW |