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-contents { | 9 .extension-error-list-contents { |
10 -webkit-transition: max-height 500ms ease-in-out; | 10 -webkit-transition: max-height 500ms ease-in-out; |
(...skipping 27 matching lines...) Expand all Loading... | |
38 .extension-error-list-show-more { | 38 .extension-error-list-show-more { |
39 text-align: center; | 39 text-align: center; |
40 width: 100%; | 40 width: 100%; |
41 } | 41 } |
42 | 42 |
43 .extension-error-list-show-more button { | 43 .extension-error-list-show-more button { |
44 width: auto; | 44 width: auto; |
45 } | 45 } |
46 | 46 |
47 .extension-error-metadata { | 47 .extension-error-metadata { |
48 -webkit-margin-after: 1px; | |
49 -webkit-margin-before: 1px; | |
Dan Beam
2014/09/26 01:42:19
why not margin-(bottom|top)?
Devlin
2014/09/27 00:33:24
I thought the -webkit variants were encouraged for
Dan Beam
2014/09/27 01:27:41
start/end have some useful properties for LTR/RTL.
| |
50 -webkit-padding-end: 1px; | |
48 display: flex; | 51 display: flex; |
49 flex-direction: row; | 52 flex-direction: row; |
50 width: 100%; | |
51 } | 53 } |
52 | 54 |
53 .extension-error-icon { | 55 .extension-error-icon { |
54 -webkit-margin-end: 3px; | 56 -webkit-margin-end: 3px; |
55 -webkit-margin-start: 3px; | 57 -webkit-margin-start: 3px; |
56 height: 15px; | 58 height: 15px; |
57 vertical-align: middle; | 59 vertical-align: middle; |
58 width: 15px; | 60 width: 15px; |
59 } | 61 } |
60 | 62 |
(...skipping 18 matching lines...) Expand all Loading... | |
79 .extension-error-severity-warning .extension-error-icon { | 81 .extension-error-severity-warning .extension-error-icon { |
80 content: url('extension_error_severity_warning.png'); | 82 content: url('extension_error_severity_warning.png'); |
81 } | 83 } |
82 | 84 |
83 .extension-error-severity-fatal .extension-error-message { | 85 .extension-error-severity-fatal .extension-error-message { |
84 color: rgba(200, 50, 50, 255); | 86 color: rgba(200, 50, 50, 255); |
85 } | 87 } |
86 .extension-error-severity-fatal .extension-error-icon { | 88 .extension-error-severity-fatal .extension-error-icon { |
87 content: url('extension_error_severity_fatal.png'); | 89 content: url('extension_error_severity_fatal.png'); |
88 } | 90 } |
OLD | NEW |