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 html.loading * { | 5 html.loading * { |
6 -webkit-transition-duration: 0 !important; | 6 -webkit-transition-duration: 0 !important; |
7 } | 7 } |
8 | 8 |
9 /* Developer mode */ | 9 /* Developer mode */ |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 } | 57 } |
58 | 58 |
59 #no-extensions-message { | 59 #no-extensions-message { |
60 font-weight: bold; | 60 font-weight: bold; |
61 } | 61 } |
62 | 62 |
63 #suggest-gallery { | 63 #suggest-gallery { |
64 -webkit-padding-start: 10px; | 64 -webkit-padding-start: 10px; |
65 } | 65 } |
66 | 66 |
67 #get-more-extensions { | 67 #footer-section { |
68 background: url('chrome://theme/IDR_WEBSTORE_ICON_32') no-repeat left center; | 68 background: url('chrome://theme/IDR_WEBSTORE_ICON_32') no-repeat left center; |
69 font-size: 1.25em; | 69 font-size: 1.25em; |
70 } | 70 } |
71 | 71 |
72 #get-more-extensions > a { | 72 #footer-section > a { |
73 -webkit-margin-start: 42px; | 73 -webkit-margin-start: 42px; |
74 line-height: 32px; | 74 line-height: 32px; |
75 } | 75 } |
76 | 76 |
77 .empty-extension-list { | 77 .empty-extension-list { |
78 height: 3em; | 78 height: 3em; |
79 } | 79 } |
80 | 80 |
81 .loading #no-extensions, | 81 .loading #no-extensions, |
82 .loading #get-more-extensions, | 82 .loading #footer-section, |
83 #extension-settings-list:not(.empty-extension-list) ~ #no-extensions, | 83 #extension-settings-list:not(.empty-extension-list) ~ #no-extensions, |
84 .empty-extension-list ~ #get-more-extensions { | 84 .empty-extension-list ~ #footer-section { |
85 display: none; | 85 display: none; |
86 } | 86 } |
87 | 87 |
88 .extension-list-item-wrapper { | 88 .extension-list-item-wrapper { |
89 margin: 23px 0; | 89 margin: 23px 0; |
90 } | 90 } |
91 | 91 |
92 .extension-list-item { | 92 .extension-list-item { |
93 background-repeat: no-repeat; | 93 background-repeat: no-repeat; |
94 display: -webkit-box; | 94 display: -webkit-box; |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 .install-warnings ul { | 187 .install-warnings ul { |
188 margin: 0; | 188 margin: 0; |
189 } | 189 } |
190 | 190 |
191 #font-measuring-div { | 191 #font-measuring-div { |
192 /* Remove from the flow and hide. */ | 192 /* Remove from the flow and hide. */ |
193 position: absolute; | 193 position: absolute; |
194 visibility: hidden; | 194 visibility: hidden; |
195 } | 195 } |
196 | 196 |
| 197 .extension-commands-config { |
| 198 float: right; |
| 199 } |
| 200 |
197 /* Overlays */ | 201 /* Overlays */ |
198 | 202 |
199 #overlay { | 203 #overlay { |
200 z-index: 5; | 204 z-index: 5; |
201 } | 205 } |
202 | 206 |
203 #overlay .page:not(.showing) { | 207 #overlay .page:not(.showing) { |
204 display: none; | 208 display: none; |
205 } | 209 } |
206 | 210 |
(...skipping 24 matching lines...) Expand all Loading... |
231 right: auto; | 235 right: auto; |
232 } | 236 } |
233 | 237 |
234 .extension-list-item:not(:hover) .trash:not(:focus) { | 238 .extension-list-item:not(:hover) .trash:not(:focus) { |
235 opacity: 0; | 239 opacity: 0; |
236 } | 240 } |
237 | 241 |
238 .extension-list-item-wrapper.may-not-disable .trash { | 242 .extension-list-item-wrapper.may-not-disable .trash { |
239 visibility: hidden; | 243 visibility: hidden; |
240 } | 244 } |
OLD | NEW |