| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 #categoryTabHandles a.selected { | 179 #categoryTabHandles a.selected { |
| 180 position:relative; | 180 position:relative; |
| 181 top: 1px; | 181 top: 1px; |
| 182 font-weight: bold; | 182 font-weight: bold; |
| 183 color: black; | 183 color: black; |
| 184 } | 184 } |
| 185 | 185 |
| 186 #detailsLogBox, | 186 #detailsLogBox, |
| 187 #detailsTimelineBox, | 187 #detailsTimelineBox, |
| 188 #httpCacheTabContent, |
| 188 #proxyTabContent, | 189 #proxyTabContent, |
| 189 #dataTabContent, | 190 #dataTabContent, |
| 190 #dnsTabContent, | 191 #dnsTabContent, |
| 191 #testTabContent { | 192 #testTabContent { |
| 192 overflow: auto; | 193 overflow: auto; |
| 193 padding: 10px; | 194 padding: 10px; |
| 194 } | 195 } |
| 195 | 196 |
| 196 #proxyTabContent td, | 197 #proxyTabContent td, |
| 197 #proxyTabContent th { | 198 #proxyTabContent th { |
| 198 font-size: 12px; | 199 font-size: 12px; |
| 199 } | 200 } |
| OLD | NEW |