OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 */ | |
5 | 4 |
6 #about-info { | 5 #about-info { |
7 -webkit-column-width: 350px; | 6 -webkit-column-width: 350px; |
8 } | 7 } |
9 | 8 |
10 #about-info > div { | 9 #about-info > div { |
11 -webkit-column-break-inside: avoid; | 10 -webkit-column-break-inside: avoid; |
12 width: 350px; | 11 width: 350px; |
13 } | 12 } |
14 | 13 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 border: 2px outset; | 111 border: 2px outset; |
113 padding: 0.5em; | 112 padding: 0.5em; |
114 } | 113 } |
115 | 114 |
116 .traffic-event-entry:hover { | 115 .traffic-event-entry:hover { |
117 background-color: #eee; | 116 background-color: #eee; |
118 } | 117 } |
119 | 118 |
120 .traffic-event-entry .time { | 119 .traffic-event-entry .time { |
121 color: #222; | 120 color: #222; |
122 font-family: sans-serif; | |
123 } | 121 } |
124 | 122 |
125 .traffic-event-entry .type { | 123 .traffic-event-entry .type { |
126 font-family: sans-serif; | |
127 font-weight: bold; | 124 font-weight: bold; |
128 margin: 0.5em; | 125 margin: 0.5em; |
129 white-space: nowrap; | 126 white-space: nowrap; |
130 } | 127 } |
131 | 128 |
132 .traffic-event-entry .details { | 129 .traffic-event-entry .details { |
133 margin: 0.5em; | 130 margin: 0.5em; |
134 overflow-x: auto; | 131 overflow-x: auto; |
135 } | 132 } |
136 | 133 |
137 .traffic-event-entry .proto { | 134 .traffic-event-entry .proto { |
138 display: none; | 135 display: none; |
139 } | 136 } |
140 | 137 |
141 .traffic-event-entry-expanded .proto { | 138 .traffic-event-entry-expanded .proto { |
142 background-color: #fff; | 139 background-color: #fff; |
143 border: 1px solid #222; | 140 border: 1px solid #222; |
144 display: block; | 141 display: block; |
145 max-height: 300px; | 142 max-height: 300px; |
146 overflow-x: auto; | 143 overflow-x: auto; |
147 overflow-y: auto; | 144 overflow-y: auto; |
148 } | 145 } |
OLD | NEW |