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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 vertical-align: middle; | 58 vertical-align: middle; |
59 z-index: 0; | 59 z-index: 0; |
60 } | 60 } |
61 | 61 |
62 .app-icon-div .app-img-container { | 62 .app-icon-div .app-img-container { |
63 bottom: 10px; | 63 bottom: 10px; |
64 left: 10px; | 64 left: 10px; |
65 position: absolute; | 65 position: absolute; |
66 } | 66 } |
67 | 67 |
68 .app-icon-div .color-stripe { | |
69 border-bottom-left-radius: 5px 5px; | |
70 border-bottom-right-radius: 5px 5px; | |
71 bottom: 0; | |
72 height: 3px; | |
73 opacity: 1.0; | |
74 position: absolute; | |
75 width: 100%; | |
76 z-index: 100; | |
77 } | |
78 | |
79 .app-context-menu > button:first-child { | 68 .app-context-menu > button:first-child { |
80 font-weight: bold; | 69 font-weight: bold; |
81 } | 70 } |
82 | 71 |
83 .app-context-menu { | 72 .app-context-menu { |
84 z-index: 1000; | 73 z-index: 1000; |
85 } | 74 } |
86 | 75 |
87 .app-context-menu > [checked]::before { | 76 .app-context-menu > [checked]::before { |
88 height: 5px; | 77 height: 5px; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 background-image: -webkit-linear-gradient( | 142 background-image: -webkit-linear-gradient( |
154 top, rgb(77, 144, 254), rgb(53, 122, 232)); | 143 top, rgb(77, 144, 254), rgb(53, 122, 232)); |
155 border: 1px solid rgb(47, 91, 183); | 144 border: 1px solid rgb(47, 91, 183); |
156 } | 145 } |
157 | 146 |
158 #app-launcher-promo > img { | 147 #app-launcher-promo > img { |
159 bottom: 0; | 148 bottom: 0; |
160 position: absolute; | 149 position: absolute; |
161 right: 30px; | 150 right: 30px; |
162 } | 151 } |
OLD | NEW |