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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 112 |
113 /* Contents */ | 113 /* Contents */ |
114 | 114 |
115 #extension-settings { | 115 #extension-settings { |
116 margin: 0; | 116 margin: 0; |
117 max-width: 100%; | 117 max-width: 100%; |
118 padding: 10px 0; | 118 padding: 10px 0; |
119 } | 119 } |
120 | 120 |
121 #no-extensions-message, | 121 #no-extensions-message, |
122 #no-apps-message { | 122 #no-apps-message, |
| 123 #no-unpacked-message { |
123 font-weight: bold; | 124 font-weight: bold; |
124 } | 125 } |
125 | 126 |
126 .empty-item-list { | 127 .empty-item-list { |
127 height: 3em; | 128 height: 3em; |
128 } | 129 } |
129 | 130 |
130 html[dir='rtl'] #search { | 131 html[dir='rtl'] #search { |
131 float: left; | 132 float: left; |
132 } | 133 } |
133 | 134 |
134 #no-extensions, | 135 #no-extensions, |
135 #no-apps { | 136 #no-apps, |
136 margin: 10px 10px; | 137 #no-unpacked { |
| 138 margin: 10px; |
137 } | 139 } |
138 | 140 |
139 .loading #no-extensions, | 141 .loading #no-extensions, |
140 .loading #no-apps, | 142 .loading #no-apps, |
| 143 .loading #no-unpacked, |
141 #extension-settings-list:not(.empty-item-list) ~ #no-extensions, | 144 #extension-settings-list:not(.empty-item-list) ~ #no-extensions, |
142 #app-settings-list:not(.empty-item-list) ~ #no-apps, | 145 #app-settings-list:not(.empty-item-list) ~ #no-apps, |
| 146 #unpacked-settings-list:not(.empty-item-list) ~ #no-unpacked, |
143 .empty-item-list { | 147 .empty-item-list { |
144 display: none; | 148 display: none; |
145 } | 149 } |
146 | 150 |
147 .extension-list-item-wrapper { | 151 .extension-list-item-wrapper { |
148 margin: 30px 0; | 152 margin: 30px 0; |
149 } | 153 } |
150 | 154 |
151 .extension-list-item { | 155 .extension-list-item { |
152 /* Set in ItemsList.createNode_(). */ | 156 /* Set in ItemsList.createNode_(). */ |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 } | 340 } |
337 | 341 |
338 a { | 342 a { |
339 color: rgb(17, 85, 204); | 343 color: rgb(17, 85, 204); |
340 text-decoration: underline; | 344 text-decoration: underline; |
341 } | 345 } |
342 | 346 |
343 a:active { | 347 a:active { |
344 color: rgb(5, 37, 119); | 348 color: rgb(5, 37, 119); |
345 } | 349 } |
OLD | NEW |