blob: ecef7809274884315ba02dba41e001f708855465 [file] [log] [blame]
[email protected]fd9c0d92010-03-23 17:47:491/*
2Copyright (c) 2010 The Chromium Authors. All rights reserved.
3Use of this source code is governed by a BSD-style license that can be
4found in the LICENSE file.
5*/
6
7* {
8 -webkit-box-sizing: border-box;
[email protected]daac7522010-04-02 18:28:529 -moz-box-sizing: border-box;
[email protected]fd9c0d92010-03-23 17:47:4910}
11body {
12 font-family: sans-serif;
13}
14
15#filterBox {
16 background: #efefef;
17 padding: 5px;
18 border-bottom: 1px solid gray;
19 overflow: hidden;
20}
21
22#filterBox * {
23 white-space: nowrap;
24 font-family: sans-serif;
25 font-size: 12px;
26}
27
28#filterBox input {
29 width: 100%;
30}
31
32#actionBox {
33 background: #efefef;
34 white-space: nowrap;
35 border-top: 1px solid gray;
36 overflow: hidden;
37}
38
39#requestsBox {
40 overflow-x: hidden;
41 overflow-y: auto
42}
43
44#detailsBox {
45 overflow: auto;
46}
47
48#splitterBox {
49 background: #bfbfbf;
50 border-left: 1px inset black;
51 border-right: 1px solid black;
52 position:absolute;
53 width: 8px;
54 cursor: col-resize;
55 user-select: none;
56}
57
58#requestsListTable {
59 cursor: pointer;
60}
61
62#requestsListTable thead td {
63 text-align: left;
64 font-weight: bold;
65 background: rgb(229, 236, 249);
66}
67
68#requestsListTable td {
69 padding: 3px;
70 border-left: 1px solid #afafaf;
71 border-bottom: 1px solid #afafaf;
72 text-overflow: ellipsis;
73 font-size: 12px;
74 white-space: nowrap;
75}
76
77#requestsListTableBody .mouseover {
78 background: rgb(244,244,255);
79}
80
81#requestsListTableBody .selected,
82#requestsListTableBody .mouseover .selected {
83 background: #C3D9FF;
84}
85
86#requestsListTableBody .source_CONNECT_JOB {
87 color: blue;
88}
89
[email protected]f02f2ae2010-05-07 23:00:1590#requestsListTableBody .source_SOCKET {
91 color: purple;
92}
93
[email protected]fd9c0d92010-03-23 17:47:4994#requestsListTableBody .source_INIT_PROXY_RESOLVER {
[email protected]f02f2ae2010-05-07 23:00:1595 color: green;
[email protected]fd9c0d92010-03-23 17:47:4996}
97
[email protected]02d8d782010-07-12 18:15:2098#requestsListTableBody .source_NONE {
99 color: red;
100}
101
[email protected]fd9c0d92010-03-23 17:47:49102.tabSwitcher {
103 margin-top: 10px;
104 margin-left: 10px;
105}
106
107.tabSwitcher th {
108 background: rgb(229,236,249);
109 cursor: pointer;
110 background-clip: border-box;
111 border-top-left-radius: 5px 5px;
112 border-top-right-radius: 5px 5px;
113 padding-left: 4px;
114 padding-top: 4px;
115 padding-right: 4px;
116 font-size: 12px;
117 margin-left: 30px;
118}
119
120.tabSwitcher th.selected, .tabSwitcherLine {
121 background: rgb(195,217,255);
122}
123
124.tabSwitcherLine {
125 height: 10px;
126}
127
[email protected]daac7522010-04-02 18:28:52128#detailsTabHandles {
129 border: 1px solid white;
[email protected]fd9c0d92010-03-23 17:47:49130}
131
132.logSourceEntry {
133 margin: 5px;
134}
135
136.logSourceEntry * p {
137 font-weight: bold;
138 font-size: 12px;
139}
140
141.logSourceEntry * td {
142 font-size: 10px;
143}
[email protected]daac7522010-04-02 18:28:52144
145#categoryTabHandles ul {
146 list-style: none;
147 padding: 0;
148 margin: 0;
149}
150
151#categoryTabHandles {
152 border-bottom: 1px solid #555;
153 background: #aaa;
[email protected]2bd19d9b2010-05-11 00:58:24154 overflow: hidden;
[email protected]daac7522010-04-02 18:28:52155}
156
157#categoryTabHandles li {
158 float: left;
159 margin-left: 5px;
160}
161
162#categoryTabHandles a {
163 text-decoration: none;
164 text-align: center;
[email protected]2bd19d9b2010-05-11 00:58:24165 display: inline-block;
166 margin-top: 4px;
167 padding: 5px 10px 3px 10px;
168 -webkit-border-top-right-radius: 8px;
169 -webkit-border-top-left-radius: 8px;
170 background-clip: border-box;
[email protected]daac7522010-04-02 18:28:52171 background: #ccc;
172}
173
174#categoryTabHandles a:hover {
175 background: #eee;
176}
177
178#categoryTabHandles a:visited,
179#categoryTabHandles a {
180 color: blue;
181}
182
183#categoryTabHandles .selected {
184 background: white;
185}
186
187#categoryTabHandles a.selected {
188 position:relative;
[email protected]2bd19d9b2010-05-11 00:58:24189 top: 3px;
[email protected]daac7522010-04-02 18:28:52190 color: black;
191}
192
193#detailsLogBox,
[email protected]a0360d82010-04-05 19:28:36194#detailsTimelineBox,
[email protected]41cc8f72010-05-10 17:52:02195#httpCacheTabContent,
[email protected]483bf122010-05-04 20:41:24196#proxyTabContent,
197#dataTabContent,
198#dnsTabContent,
199#testTabContent {
[email protected]daac7522010-04-02 18:28:52200 overflow: auto;
[email protected]483bf122010-05-04 20:41:24201 padding: 10px;
[email protected]a0360d82010-04-05 19:28:36202}
203
204#proxyTabContent td,
205#proxyTabContent th {
206 font-size: 12px;
207}
[email protected]096559bd2010-05-11 06:14:51208
209/*
210 * Styles for TABLE that uses a thin collapsed border.
211 */
212table.styledTable {
213 border-collapse:collapse;
214}
215
216table.styledTable,
217.styledTable th,
218.styledTable td {
219 border: 1px solid #777;
220}
221
222.styledTable th {
223 background: rgb(224,236,255);
224}
225