Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 .extension-error-list a { | 5 .extension-error-list a { |
| 6 cursor: pointer; | 6 cursor: pointer; |
| 7 } | 7 } |
| 8 | 8 |
| 9 .extension-error-list ul { | |
| 10 list-style-type: none; | |
| 11 } | |
| 12 | |
| 9 .extension-error-list-contents { | 13 .extension-error-list-contents { |
| 10 -webkit-padding-start: 20px; | 14 -webkit-padding-start: 20px; |
| 11 list-style-type: none; | |
| 12 } | 15 } |
| 13 | 16 |
| 14 .extension-error-list-show-more { | 17 .extension-error-list-show-more { |
| 15 text-align: center; | 18 text-align: center; |
| 16 width: 100%; | 19 width: 100%; |
| 17 } | 20 } |
| 18 | 21 |
| 19 .extension-error-simple-wrapper { | 22 .extension-error-simple-wrapper, |
| 23 .extension-error-detailed-wrapper { | |
|
not at google - send to devlin
2013/09/06 17:05:19
alphabetise?
Devlin
2013/09/06 18:18:02
Done.
| |
| 20 width: 100%; | 24 width: 100%; |
| 21 } | 25 } |
| 22 | 26 |
| 27 .extension-error-metadata { | |
| 28 display: inline-block; | |
| 29 width: 100%; | |
| 30 } | |
| 31 | |
| 32 .extension-error-detailed-wrapper summary::-webkit-details-marker { | |
| 33 -webkit-margin-start: -15px; | |
| 34 } | |
| 35 | |
| 36 .extension-error-detailed-wrapper details :focus { | |
| 37 outline: none; | |
| 38 } | |
| 39 | |
| 40 .extension-error-detailed-wrapper details[open] { | |
| 41 -webkit-margin-after: 10px; | |
| 42 } | |
| 43 | |
| 23 .extension-error-icon { | 44 .extension-error-icon { |
| 24 -webkit-margin-end: 3px; | 45 -webkit-margin-end: 3px; |
| 25 -webkit-margin-start: 3px; | 46 -webkit-margin-start: 3px; |
| 26 height: 15px; | 47 height: 15px; |
| 27 vertical-align: middle; | 48 vertical-align: middle; |
| 28 width: 15px; | 49 width: 15px; |
| 29 } | 50 } |
| 30 | 51 |
| 31 .extension-error-severity-info .extension-error-message { | 52 .extension-error-severity-info .extension-error-message { |
| 32 color: #333; | 53 color: #333; |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 45 .extension-error-severity-fatal .extension-error-message { | 66 .extension-error-severity-fatal .extension-error-message { |
| 46 color: rgba(200, 50, 50, 255); | 67 color: rgba(200, 50, 50, 255); |
| 47 } | 68 } |
| 48 .extension-error-severity-fatal .extension-error-icon { | 69 .extension-error-severity-fatal .extension-error-icon { |
| 49 content: url('extension_error_severity_fatal.png'); | 70 content: url('extension_error_severity_fatal.png'); |
| 50 } | 71 } |
| 51 | 72 |
| 52 .extension-error-view-source { | 73 .extension-error-view-source { |
| 53 float: right; | 74 float: right; |
| 54 } | 75 } |
| 76 | |
| 77 .extension-error-details { | |
| 78 -webkit-margin-start: 30px; | |
| 79 } | |
| 80 | |
| 81 .extension-error-stack-trace-list { | |
| 82 -webkit-padding-start: 20px; | |
| 83 } | |
| 84 | |
| 85 .extension-error-stack-trace-list .extension-error-view-source { | |
| 86 float: none; | |
| 87 } | |
| OLD | NEW |