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 body, | 5 body, |
6 html { | 6 html { |
7 color: rgb(48, 57, 66); | 7 color: rgb(48, 57, 66); |
8 font-family: Arial, sans-serif; | 8 font-family: Arial, sans-serif; |
9 font-size: 90%; | 9 font-size: 90%; |
10 overflow: visible; | 10 overflow: visible; |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 /* Contents */ | 114 /* Contents */ |
115 | 115 |
116 #extension-settings { | 116 #extension-settings { |
117 margin: 0; | 117 margin: 0; |
118 max-width: 100%; | 118 max-width: 100%; |
119 padding: 10px 0; | 119 padding: 10px 0; |
120 } | 120 } |
121 | 121 |
122 #no-extensions-message, | 122 #no-extensions-message, |
123 #no-apps-message { | 123 #no-apps-message, |
| 124 #no-unpacked-message { |
124 font-weight: bold; | 125 font-weight: bold; |
125 } | 126 } |
126 | 127 |
127 .empty-item-list { | 128 .empty-item-list { |
128 height: 3em; | 129 height: 3em; |
129 } | 130 } |
130 | 131 |
131 #no-extensions, | 132 #no-extensions, |
132 #no-apps { | 133 #no-apps, |
133 margin: 10px 10px; | 134 #no-unpacked { |
| 135 margin: 10px; |
134 } | 136 } |
135 | 137 |
136 .loading #no-extensions, | 138 .loading #no-extensions, |
137 .loading #no-apps, | 139 .loading #no-apps, |
138 #extension-settings-list:not(.empty-item-list) ~ #no-extensions, | 140 .loading #no-unpacked, |
139 #app-settings-list:not(.empty-item-list) ~ #no-apps, | 141 #packed-extension-list:not(.empty-item-list) ~ #no-extensions, |
| 142 #packed-app-list:not(.empty-item-list) ~ #no-apps, |
| 143 #unpacked-list:not(.empty-item-list) ~ #no-unpacked, |
140 .empty-item-list { | 144 .empty-item-list { |
141 display: none; | 145 display: none; |
142 } | 146 } |
143 | 147 |
144 .extension-list-item-wrapper { | 148 .extension-list-item-wrapper { |
145 margin: 30px 0; | 149 margin: 30px 0; |
146 } | 150 } |
147 | 151 |
148 .extension-list-item { | 152 .extension-list-item { |
149 /* Set in ItemsList.createNode_(). */ | 153 /* Set in ItemsList.createNode_(). */ |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 } | 337 } |
334 | 338 |
335 a { | 339 a { |
336 color: rgb(17, 85, 204); | 340 color: rgb(17, 85, 204); |
337 text-decoration: underline; | 341 text-decoration: underline; |
338 } | 342 } |
339 | 343 |
340 a:active { | 344 a:active { |
341 color: rgb(5, 37, 119); | 345 color: rgb(5, 37, 119); |
342 } | 346 } |
OLD | NEW |