blob: 7e2e3539bef71ba5a67ac08e7cefa60b17ba6501 [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]ee094b82010-08-24 15:55:5190#requestsListTableBody .source_HOST_RESOLVER_IMPL_JOB,
91#requestsListTableBody .source_HOST_RESOLVER_IMPL_REQUEST {
92 color: #308080;
93}
94
[email protected]f02f2ae2010-05-07 23:00:1595#requestsListTableBody .source_SOCKET {
96 color: purple;
97}
98
[email protected]fd9c0d92010-03-23 17:47:4999#requestsListTableBody .source_INIT_PROXY_RESOLVER {
[email protected]f02f2ae2010-05-07 23:00:15100 color: green;
[email protected]fd9c0d92010-03-23 17:47:49101}
102
[email protected]02d8d782010-07-12 18:15:20103#requestsListTableBody .source_NONE {
104 color: red;
105}
106
[email protected]fd9c0d92010-03-23 17:47:49107.tabSwitcher {
108 margin-top: 10px;
109 margin-left: 10px;
110}
111
112.tabSwitcher th {
113 background: rgb(229,236,249);
114 cursor: pointer;
115 background-clip: border-box;
116 border-top-left-radius: 5px 5px;
117 border-top-right-radius: 5px 5px;
118 padding-left: 4px;
119 padding-top: 4px;
120 padding-right: 4px;
121 font-size: 12px;
122 margin-left: 30px;
123}
124
125.tabSwitcher th.selected, .tabSwitcherLine {
126 background: rgb(195,217,255);
127}
128
129.tabSwitcherLine {
130 height: 10px;
131}
132
[email protected]daac7522010-04-02 18:28:52133#detailsTabHandles {
134 border: 1px solid white;
[email protected]fd9c0d92010-03-23 17:47:49135}
136
137.logSourceEntry {
138 margin: 5px;
139}
140
141.logSourceEntry * p {
142 font-weight: bold;
143 font-size: 12px;
144}
145
146.logSourceEntry * td {
147 font-size: 10px;
148}
[email protected]daac7522010-04-02 18:28:52149
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;
[email protected]2bd19d9b2010-05-11 00:58:24159 overflow: hidden;
[email protected]daac7522010-04-02 18:28:52160}
161
162#categoryTabHandles li {
163 float: left;
164 margin-left: 5px;
165}
166
167#categoryTabHandles a {
168 text-decoration: none;
169 text-align: center;
[email protected]2bd19d9b2010-05-11 00:58:24170 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;
[email protected]daac7522010-04-02 18:28:52176 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;
[email protected]2bd19d9b2010-05-11 00:58:24194 top: 3px;
[email protected]daac7522010-04-02 18:28:52195 color: black;
196}
197
198#detailsLogBox,
[email protected]a0360d82010-04-05 19:28:36199#detailsTimelineBox,
[email protected]41cc8f72010-05-10 17:52:02200#httpCacheTabContent,
[email protected]483bf122010-05-04 20:41:24201#proxyTabContent,
202#dataTabContent,
203#dnsTabContent,
[email protected]59d7a5a2010-08-30 16:44:27204#socketsTabContent,
[email protected]483bf122010-05-04 20:41:24205#testTabContent {
[email protected]daac7522010-04-02 18:28:52206 overflow: auto;
[email protected]483bf122010-05-04 20:41:24207 padding: 10px;
[email protected]a0360d82010-04-05 19:28:36208}
209
210#proxyTabContent td,
211#proxyTabContent th {
212 font-size: 12px;
213}
[email protected]096559bd2010-05-11 06:14:51214
215/*
216 * Styles for TABLE that uses a thin collapsed border.
217 */
218table.styledTable {
219 border-collapse:collapse;
220}
221
222table.styledTable,
223.styledTable th,
224.styledTable td {
225 border: 1px solid #777;
[email protected]59d7a5a2010-08-30 16:44:27226 padding-right: 4px;
227 padding-left: 4px;
[email protected]096559bd2010-05-11 06:14:51228}
229
230.styledTable th {
231 background: rgb(224,236,255);
232}
233
[email protected]ba00b492010-09-08 14:53:38234.styledTable th.title {
235 background: rgb(255,217,217);
236}
237
[email protected]4f62f65652010-09-07 21:39:06238/*
239 * This is the box in the top right of the Data tab which shows how many
240 * events have been captured so far.
241 */
242.capturingBox {
243 border: 1px dashed black;
244 display: inline-block;
245 text-align: left;
246 padding: 5px;
247}
248
249/**
250 * Styling for an emphasized button.
251 */
252.bigButton {
253 font-size: 100%;
254 font-weight: bold;
255}