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