OLD | NEW |
| (Empty) |
1 /* | |
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 | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 #log-level-container { | |
8 margin: 5px; | |
9 } | |
10 | |
11 #log-level-container label { | |
12 vertical-align: middle; | |
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 } | |
34 | |
35 .state-table { | |
36 border-collapse: collapse; | |
37 } | |
38 | |
39 .state-table tr td { | |
40 border: 1px solid rgb(220, 220, 220); | |
41 font-size: 13px; | |
42 } | |
43 | |
44 .state-table-header { | |
45 font-weight: bold; | |
46 } | |
47 | |
48 .state-table-expand-button-cell { | |
49 text-align: center; | |
50 } | |
51 | |
52 .state-table-expand-button { | |
53 background-color: #f0f0f0; | |
54 border: 1px solid; | |
55 border-color: #a0a0a0; | |
56 height: 12px; | |
57 margin: 4px; | |
58 padding: 0; | |
59 width: 12px; | |
60 } | |
61 | |
62 .state-table-expand-button-expanded { | |
63 background-color: #b0b0b0; | |
64 } | |
65 | |
66 .state-table-expanded-cell { | |
67 white-space: pre-wrap; | |
68 } | |
69 | |
70 .network-level-tag { | |
71 -webkit-margin-end: 5px; | |
72 border: 1px solid; | |
73 border-radius: 2px; | |
74 padding: 0 4px; | |
75 } | |
76 | |
77 .network-log-level-event { | |
78 color: orange; | |
79 } | |
80 | |
81 .network-log-level-error { | |
82 color: red; | |
83 } | |
84 | |
85 .network-log-level-debug { | |
86 color: blue; | |
87 } | |
OLD | NEW |