OLD | NEW |
---|---|
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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-load-error { | 5 #extension-load-error { |
6 -webkit-margin-before: 10px; | 6 -webkit-margin-before: 10px; |
7 -webkit-margin-end: 20px; | 7 -webkit-margin-end: 20px; |
8 -webkit-padding-after: 10px; | 8 -webkit-padding-after: 10px; |
9 -webkit-padding-end: 3px; | 9 -webkit-padding-end: 3px; |
10 -webkit-padding-start: 10px; | 10 -webkit-padding-start: 10px; |
(...skipping 20 matching lines...) Expand all Loading... | |
31 max-height: 100px; | 31 max-height: 100px; |
32 } | 32 } |
33 | 33 |
34 #extension-load-error-manifest .extension-code-highlighted-source { | 34 #extension-load-error-manifest .extension-code-highlighted-source { |
35 background-color: pink; | 35 background-color: pink; |
36 } | 36 } |
37 | 37 |
38 #extension-load-error-controls { | 38 #extension-load-error-controls { |
39 align-self: flex-end; | 39 align-self: flex-end; |
40 } | 40 } |
41 | |
42 #extension-load-error-additional>span { | |
Finnur
2014/07/14 10:25:58
nit: Add space before and after '>'
(also below)
gpdavis
2014/07/14 18:58:19
Done.
| |
43 font-size: 12px; | |
44 font-weight: bold; | |
45 } | |
46 | |
47 #extension-load-error-additional>li { | |
48 margin: 3px 0; | |
Finnur
2014/07/14 10:25:58
There's a fairly good chance this won't work with
gpdavis
2014/07/14 18:58:19
Done.
| |
49 } | |
OLD | NEW |