| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 #requestsListTableBody .selected, | 81 #requestsListTableBody .selected, |
| 82 #requestsListTableBody .mouseover .selected { | 82 #requestsListTableBody .mouseover .selected { |
| 83 background: #C3D9FF; | 83 background: #C3D9FF; |
| 84 } | 84 } |
| 85 | 85 |
| 86 #requestsListTableBody .source_CONNECT_JOB { | 86 #requestsListTableBody .source_CONNECT_JOB { |
| 87 color: blue; | 87 color: blue; |
| 88 } | 88 } |
| 89 | 89 |
| 90 #requestsListTableBody .source_SOCKET { |
| 91 color: purple; |
| 92 } |
| 93 |
| 90 #requestsListTableBody .source_INIT_PROXY_RESOLVER { | 94 #requestsListTableBody .source_INIT_PROXY_RESOLVER { |
| 91 color: orange; | 95 color: green; |
| 92 } | 96 } |
| 93 | 97 |
| 94 .tabSwitcher { | 98 .tabSwitcher { |
| 95 margin-top: 10px; | 99 margin-top: 10px; |
| 96 margin-left: 10px; | 100 margin-left: 10px; |
| 97 } | 101 } |
| 98 | 102 |
| 99 .tabSwitcher th { | 103 .tabSwitcher th { |
| 100 background: rgb(229,236,249); | 104 background: rgb(229,236,249); |
| 101 cursor: pointer; | 105 cursor: pointer; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 #dnsTabContent, | 190 #dnsTabContent, |
| 187 #testTabContent { | 191 #testTabContent { |
| 188 overflow: auto; | 192 overflow: auto; |
| 189 padding: 10px; | 193 padding: 10px; |
| 190 } | 194 } |
| 191 | 195 |
| 192 #proxyTabContent td, | 196 #proxyTabContent td, |
| 193 #proxyTabContent th { | 197 #proxyTabContent th { |
| 194 font-size: 12px; | 198 font-size: 12px; |
| 195 } | 199 } |
| OLD | NEW |