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: -webkit-linear-gradient(rgb(255, 242, 183), rgb(250, 230, 145)); |
| 280 background-position: auto; |
| 281 background-repeat: auto; |
| 282 border: 1px solid rgb(201, 189, 141); |
| 283 border-radius: 3px; |
| 284 padding: 5px 0 5px 5px; |
| 285 } |
| 286 |
278 .may-not-disable .optional-controls .optional-controls-disableable { | 287 .may-not-disable .optional-controls .optional-controls-disableable { |
279 display: none; | 288 display: none; |
280 } | 289 } |
281 | 290 |
282 /* Managed mode */ | 291 /* Managed mode */ |
283 | 292 |
284 .page:not(.managed-mode) .managed-mode-banner { | 293 .page:not(.managed-mode) .managed-mode-banner { |
285 display: none; | 294 display: none; |
286 } | 295 } |
287 | 296 |
288 .managed-mode .more-extensions-link { | 297 .managed-mode .more-extensions-link { |
289 display: none; | 298 display: none; |
290 } | 299 } |
OLD | NEW |