OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
not at google - send to devlin
2014/04/25 17:10:20
2014 :)
Devlin
2014/04/25 18:13:12
Done.
| |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
not at google - send to devlin
2014/04/25 17:10:20
i'm going tro trust you on this one.
| |
5 #extension-load-error { | |
6 -webkit-margin-before: 10px; | |
7 -webkit-margin-end: 20px; | |
8 -webkit-padding-after: 10px; | |
9 -webkit-padding-end: 3px; | |
10 -webkit-padding-start: 10px; | |
11 background-color: rgba(255, 249, 221, 1); | |
12 border-radius: 7px; | |
13 display: flex; | |
14 flex-direction: column; | |
15 font-size: 1.1em; | |
16 position: relative; | |
not at google - send to devlin
2014/04/25 17:10:20
shouldn't need this
Devlin
2014/04/25 18:13:12
Done.
| |
17 } | |
18 | |
19 #extension-load-error h2 { | |
20 font-size: 14px; | |
21 font-weight: bold; | |
22 } | |
23 | |
24 #extension-load-error-message { | |
25 -webkit-margin-before: 5px; | |
26 } | |
27 | |
28 #extension-load-error-manifest { | |
29 -webkit-margin-before: 10px; | |
30 background-color: rgba(255, 250, 240, 1); | |
31 font-family: monospace; | |
32 max-height: 100px; | |
33 max-width: 350px; | |
34 overflow: auto; | |
35 padding: 7px; | |
36 } | |
37 | |
38 #extension-load-error-manifest .highlighted-source { | |
39 background-color: pink; | |
40 } | |
41 | |
42 #extension-load-error-controls { | |
43 align-self: flex-end; | |
44 } | |
OLD | NEW |