| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2010 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 * { | 7 * { |
| 8 -webkit-box-sizing: border-box; | 8 -webkit-box-sizing: border-box; |
| 9 -moz-box-sizing: border-box; | 9 -moz-box-sizing: border-box; |
| 10 } | 10 } |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 } | 173 } |
| 174 | 174 |
| 175 #categoryTabHandles a.selected { | 175 #categoryTabHandles a.selected { |
| 176 position:relative; | 176 position:relative; |
| 177 top: 1px; | 177 top: 1px; |
| 178 font-weight: bold; | 178 font-weight: bold; |
| 179 color: black; | 179 color: black; |
| 180 } | 180 } |
| 181 | 181 |
| 182 #detailsLogBox, | 182 #detailsLogBox, |
| 183 #detailsTimelineBox { | 183 #detailsTimelineBox, |
| 184 #proxyTabContent { |
| 184 overflow: auto; | 185 overflow: auto; |
| 185 } | 186 } |
| 187 |
| 188 #proxyTabContent { |
| 189 padding-left: 20px; |
| 190 } |
| 191 |
| 192 #proxyTabContent td, |
| 193 #proxyTabContent th { |
| 194 font-size: 12px; |
| 195 } |
| OLD | NEW |