| 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 box-sizing: border-box; | 8 box-sizing: border-box; |
| 9 -moz-box-sizing: border-box; | 9 -moz-box-sizing: border-box; |
| 10 } | 10 } |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 | 153 |
| 154 #detailsLogBox, | 154 #detailsLogBox, |
| 155 #detailsTimelineBox, | 155 #detailsTimelineBox, |
| 156 #httpCacheTabContent, | 156 #httpCacheTabContent, |
| 157 #proxyTabContent, | 157 #proxyTabContent, |
| 158 #dataTabContent, | 158 #dataTabContent, |
| 159 #dnsTabContent, | 159 #dnsTabContent, |
| 160 #socketsTabContent, | 160 #socketsTabContent, |
| 161 #spdyTabContent, | 161 #spdyTabContent, |
| 162 #serviceProvidersTabContent, | 162 #serviceProvidersTabContent, |
| 163 #testTabContent { | 163 #testTabContent, |
| 164 #hstsTabContent { |
| 164 overflow: auto; | 165 overflow: auto; |
| 165 padding: 10px; | 166 padding: 10px; |
| 166 } | 167 } |
| 167 | 168 |
| 168 #proxyTabContent td, | 169 #proxyTabContent td, |
| 169 #proxyTabContent th { | 170 #proxyTabContent th { |
| 170 font-size: 12px; | 171 font-size: 12px; |
| 171 } | 172 } |
| 172 | 173 |
| 173 /* | 174 /* |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 font-size: 100%; | 212 font-size: 100%; |
| 212 font-weight: bold; | 213 font-weight: bold; |
| 213 } | 214 } |
| 214 | 215 |
| 215 /** | 216 /** |
| 216 * Styling for text indicating a potential problem or error state. | 217 * Styling for text indicating a potential problem or error state. |
| 217 */ | 218 */ |
| 218 .warningText { | 219 .warningText { |
| 219 color: red; | 220 color: red; |
| 220 } | 221 } |
| OLD | NEW |