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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 } | 268 } |
269 | 269 |
270 .extension-list-item:not(:hover) .trash:not(:focus) { | 270 .extension-list-item:not(:hover) .trash:not(:focus) { |
271 opacity: 0; | 271 opacity: 0; |
272 } | 272 } |
273 | 273 |
274 .extension-list-item-wrapper.may-not-disable .trash { | 274 .extension-list-item-wrapper.may-not-disable .trash { |
275 visibility: hidden; | 275 visibility: hidden; |
276 } | 276 } |
277 | 277 |
| 278 .extension-highlight { |
| 279 background: rgb(238, 238, 238); |
| 280 background-position: auto; |
| 281 background-repeat: auto; |
| 282 border-radius: 3px; |
| 283 padding: 5px 0 5px 5px; |
| 284 } |
| 285 |
278 .may-not-disable .optional-controls .optional-controls-disableable { | 286 .may-not-disable .optional-controls .optional-controls-disableable { |
279 display: none; | 287 display: none; |
280 } | 288 } |
281 | 289 |
282 /* Managed mode */ | 290 /* Managed mode */ |
283 | 291 |
284 .page:not(.managed-mode) .managed-mode-banner { | 292 .page:not(.managed-mode) .managed-mode-banner { |
285 display: none; | 293 display: none; |
286 } | 294 } |
287 | 295 |
288 .managed-mode .more-extensions-link { | 296 .managed-mode .more-extensions-link { |
289 display: none; | 297 display: none; |
290 } | 298 } |
OLD | NEW |