OLD | NEW |
(Empty) | |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 .extension-error-list a { |
| 6 cursor: pointer; |
| 7 } |
| 8 |
| 9 .extension-error-list-contents { |
| 10 -webkit-padding-start: 20px; |
| 11 list-style-type: none; |
| 12 } |
| 13 |
| 14 .extension-error-list-show-more { |
| 15 cursor: pointer; |
| 16 text-align: center; |
| 17 width: 100%; |
| 18 } |
| 19 |
| 20 .extension-error-simple-wrapper { |
| 21 display: -webkit-box; |
| 22 width: 100%; |
| 23 } |
| 24 |
| 25 .extension-error-simple-wrapper .extension-error-metadata { |
| 26 width: 85%; |
| 27 } |
| 28 |
| 29 .extension-error-icon-error, |
| 30 .extension-error-icon-log, |
| 31 .extension-error-icon-warn { |
| 32 -webkit-margin-end: 10px; |
| 33 height: 15px; |
| 34 width: 15px; |
| 35 } |
| 36 |
| 37 .extension-error-icon-error { |
| 38 content: url('extension_error_error.png'); |
| 39 } |
| 40 |
| 41 .extension-error-icon-warn { |
| 42 content: url('extension_error_warn.png'); |
| 43 } |
| 44 |
| 45 .extension-error-icon-log { |
| 46 content: url('extension_error_log.png'); |
| 47 } |
| 48 |
| 49 .extension-error-message { |
| 50 color: rgba(200, 50, 50, 255); |
| 51 } |
OLD | NEW |