OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2013 The Chromium Authors. All rights reserved. | 2 * Copyright 2013 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #log-level-container { | 7 #header { |
8 margin: 5px; | 8 margin: 5px; |
9 } | 9 } |
10 | 10 |
11 #log-level-container label { | 11 #header a { |
12 vertical-align: middle; | 12 paddong: 0 4px; |
michaelpg
2014/12/11 01:41:45
padding
stevenjb
2014/12/11 19:57:52
oops. Done.
| |
13 } | |
14 | |
15 #log-level-container input { | |
16 margin-bottom: 1px; | |
17 vertical-align: middle; | |
18 } | |
19 | |
20 #network-log-container { | |
21 border: 1px solid rgb(220, 220, 220); | |
22 font-size: 12px; | |
23 height: 350px; | |
24 overflow: scroll; | |
25 padding: 10px; | |
26 width: 100%; | |
27 } | |
28 | |
29 #network-log-container p { | |
30 font-family: monospace; | |
31 line-height: 20px; | |
32 margin: 2px; | |
33 } | 13 } |
34 | 14 |
35 .state-table { | 15 .state-table { |
36 border-collapse: collapse; | 16 border-collapse: collapse; |
37 } | 17 } |
38 | 18 |
39 .state-table tr td { | 19 .state-table tr td { |
40 border: 1px solid rgb(220, 220, 220); | 20 border: 1px solid rgb(220, 220, 220); |
41 font-size: 13px; | 21 font-size: 13px; |
42 } | 22 } |
(...skipping 13 matching lines...) Expand all Loading... | |
56 margin: 0; | 36 margin: 0; |
57 outline: none; | 37 outline: none; |
58 padding: 0; | 38 padding: 0; |
59 width: 20px; | 39 width: 20px; |
60 } | 40 } |
61 | 41 |
62 .state-table-expanded-cell { | 42 .state-table-expanded-cell { |
63 white-space: pre-wrap; | 43 white-space: pre-wrap; |
64 } | 44 } |
65 | 45 |
66 .network-level-tag { | |
67 -webkit-margin-end: 5px; | |
68 border: 1px solid; | |
69 border-radius: 2px; | |
70 padding: 0 4px; | |
71 } | |
72 | |
73 .network-log-level-event { | |
74 color: orange; | |
75 } | |
76 | |
77 .network-log-level-error { | |
78 color: red; | |
79 } | |
80 | |
81 .network-log-level-debug { | |
82 color: blue; | |
83 } | |
84 | |
85 #advanced-options { | 46 #advanced-options { |
86 margin-top: 10px; | 47 margin-top: 10px; |
87 } | 48 } |
OLD | NEW |