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 .logSourceEntry * p { | 141 .logSourceEntry * p { |
142 font-weight: bold; | 142 font-weight: bold; |
143 font-size: 12px; | 143 font-size: 12px; |
144 } | 144 } |
145 | 145 |
146 .logSourceEntry * td { | 146 .logSourceEntry * td { |
147 font-size: 10px; | 147 font-size: 10px; |
148 } | 148 } |
149 | 149 |
150 #categoryTabHandles ul { | |
151 list-style: none; | |
152 padding: 0; | |
153 margin: 0; | |
154 } | |
155 | |
156 #categoryTabHandles { | |
157 border-bottom: 1px solid #555; | |
158 background: #aaa; | |
159 overflow: hidden; | |
160 } | |
161 | |
162 #categoryTabHandles li { | |
163 float: left; | |
164 margin-left: 5px; | |
165 } | |
166 | |
167 #categoryTabHandles a { | |
168 text-decoration: none; | |
169 text-align: center; | |
170 display: inline-block; | |
171 margin-top: 4px; | |
172 padding: 5px 10px 3px 10px; | |
173 -webkit-border-top-right-radius: 8px; | |
174 -webkit-border-top-left-radius: 8px; | |
175 background-clip: border-box; | |
176 background: #ccc; | |
177 } | |
178 | |
179 #categoryTabHandles a:hover { | |
180 background: #eee; | |
181 } | |
182 | |
183 #categoryTabHandles a:visited, | |
184 #categoryTabHandles a { | |
185 color: blue; | |
186 } | |
187 | |
188 #categoryTabHandles .selected { | |
189 background: white; | |
190 } | |
191 | |
192 #categoryTabHandles a.selected { | |
193 position:relative; | |
194 top: 3px; | |
195 color: black; | |
196 } | |
197 | |
198 #detailsLogBox, | 150 #detailsLogBox, |
199 #detailsTimelineBox, | 151 #detailsTimelineBox, |
200 #httpCacheTabContent, | 152 #httpCacheTabContent, |
201 #proxyTabContent, | 153 #proxyTabContent, |
202 #dataTabContent, | 154 #dataTabContent, |
203 #dnsTabContent, | 155 #dnsTabContent, |
204 #socketsTabContent, | 156 #socketsTabContent, |
205 #spdyTabContent, | 157 #spdyTabContent, |
206 #serviceProvidersTabContent, | 158 #serviceProvidersTabContent, |
207 #testTabContent { | 159 #testTabContent { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 font-size: 100%; | 207 font-size: 100%; |
256 font-weight: bold; | 208 font-weight: bold; |
257 } | 209 } |
258 | 210 |
259 /** | 211 /** |
260 * Styling for text indicating a potential problem or error state. | 212 * Styling for text indicating a potential problem or error state. |
261 */ | 213 */ |
262 .warningText { | 214 .warningText { |
263 color: red; | 215 color: red; |
264 } | 216 } |
OLD | NEW |