| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 #categoryTabHandles ul { | 141 #categoryTabHandles ul { |
| 142 list-style: none; | 142 list-style: none; |
| 143 padding: 0; | 143 padding: 0; |
| 144 margin: 0; | 144 margin: 0; |
| 145 } | 145 } |
| 146 | 146 |
| 147 #categoryTabHandles { | 147 #categoryTabHandles { |
| 148 border-bottom: 1px solid #555; | 148 border-bottom: 1px solid #555; |
| 149 background: #aaa; | 149 background: #aaa; |
| 150 overflow: hidden; |
| 150 } | 151 } |
| 151 | 152 |
| 152 #categoryTabHandles li { | 153 #categoryTabHandles li { |
| 153 float: left; | 154 float: left; |
| 154 margin-left: 5px; | 155 margin-left: 5px; |
| 155 } | 156 } |
| 156 | 157 |
| 157 #categoryTabHandles a { | 158 #categoryTabHandles a { |
| 158 text-decoration: none; | 159 text-decoration: none; |
| 159 text-align: center; | 160 text-align: center; |
| 160 display: block; | 161 display: inline-block; |
| 161 width: 9em; | 162 margin-top: 4px; |
| 162 padding: 5px; | 163 padding: 5px 10px 3px 10px; |
| 164 -webkit-border-top-right-radius: 8px; |
| 165 -webkit-border-top-left-radius: 8px; |
| 166 background-clip: border-box; |
| 163 background: #ccc; | 167 background: #ccc; |
| 164 } | 168 } |
| 165 | 169 |
| 166 #categoryTabHandles a:hover { | 170 #categoryTabHandles a:hover { |
| 167 background: #eee; | 171 background: #eee; |
| 168 } | 172 } |
| 169 | 173 |
| 170 #categoryTabHandles a:visited, | 174 #categoryTabHandles a:visited, |
| 171 #categoryTabHandles a { | 175 #categoryTabHandles a { |
| 172 color: blue; | 176 color: blue; |
| 173 } | 177 } |
| 174 | 178 |
| 175 #categoryTabHandles .selected { | 179 #categoryTabHandles .selected { |
| 176 background: white; | 180 background: white; |
| 177 } | 181 } |
| 178 | 182 |
| 179 #categoryTabHandles a.selected { | 183 #categoryTabHandles a.selected { |
| 180 position:relative; | 184 position:relative; |
| 181 top: 1px; | 185 top: 3px; |
| 182 font-weight: bold; | |
| 183 color: black; | 186 color: black; |
| 184 } | 187 } |
| 185 | 188 |
| 186 #detailsLogBox, | 189 #detailsLogBox, |
| 187 #detailsTimelineBox, | 190 #detailsTimelineBox, |
| 188 #httpCacheTabContent, | 191 #httpCacheTabContent, |
| 189 #proxyTabContent, | 192 #proxyTabContent, |
| 190 #dataTabContent, | 193 #dataTabContent, |
| 191 #dnsTabContent, | 194 #dnsTabContent, |
| 192 #testTabContent { | 195 #testTabContent { |
| 193 overflow: auto; | 196 overflow: auto; |
| 194 padding: 10px; | 197 padding: 10px; |
| 195 } | 198 } |
| 196 | 199 |
| 197 #proxyTabContent td, | 200 #proxyTabContent td, |
| 198 #proxyTabContent th { | 201 #proxyTabContent th { |
| 199 font-size: 12px; | 202 font-size: 12px; |
| 200 } | 203 } |
| OLD | NEW |