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 #log-level-container { |
8 margin: 5px; | 8 margin: 5px; |
9 } | 9 } |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 .state-table-header { | 44 .state-table-header { |
45 font-weight: bold; | 45 font-weight: bold; |
46 } | 46 } |
47 | 47 |
48 .state-table-expand-button-cell { | 48 .state-table-expand-button-cell { |
49 text-align: center; | 49 text-align: center; |
50 } | 50 } |
51 | 51 |
52 .state-table-expand-button { | 52 .state-table-expand-button { |
53 background-color: #f0f0f0; | 53 background-color: #fff; |
54 border: 1px solid; | 54 border: none; |
55 border-color: #a0a0a0; | 55 height: 20px; |
56 height: 12px; | 56 margin: 0; |
57 margin: 4px; | 57 outline: none; |
58 padding: 0; | 58 padding: 0; |
59 width: 12px; | 59 width: 20px; |
60 } | |
61 | |
62 .state-table-expand-button-expanded { | |
63 background-color: #b0b0b0; | |
64 } | 60 } |
65 | 61 |
66 .state-table-expanded-cell { | 62 .state-table-expanded-cell { |
67 white-space: pre-wrap; | 63 white-space: pre-wrap; |
68 } | 64 } |
69 | 65 |
70 .network-level-tag { | 66 .network-level-tag { |
71 -webkit-margin-end: 5px; | 67 -webkit-margin-end: 5px; |
72 border: 1px solid; | 68 border: 1px solid; |
73 border-radius: 2px; | 69 border-radius: 2px; |
74 padding: 0 4px; | 70 padding: 0 4px; |
75 } | 71 } |
76 | 72 |
77 .network-log-level-event { | 73 .network-log-level-event { |
78 color: orange; | 74 color: orange; |
79 } | 75 } |
80 | 76 |
81 .network-log-level-error { | 77 .network-log-level-error { |
82 color: red; | 78 color: red; |
83 } | 79 } |
84 | 80 |
85 .network-log-level-debug { | 81 .network-log-level-debug { |
86 color: blue; | 82 color: blue; |
87 } | 83 } |
OLD | NEW |