blob: a831ca84075de2dbf7c2aafa88b25674c789b2f0 [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
98.tabSwitcher {
99 margin-top: 10px;
100 margin-left: 10px;
101}
102
103.tabSwitcher th {
104 background: rgb(229,236,249);
105 cursor: pointer;
106 background-clip: border-box;
107 border-top-left-radius: 5px 5px;
108 border-top-right-radius: 5px 5px;
109 padding-left: 4px;
110 padding-top: 4px;
111 padding-right: 4px;
112 font-size: 12px;
113 margin-left: 30px;
114}
115
116.tabSwitcher th.selected, .tabSwitcherLine {
117 background: rgb(195,217,255);
118}
119
120.tabSwitcherLine {
121 height: 10px;
122}
123
[email protected]daac7522010-04-02 18:28:52124#detailsTabHandles {
125 border: 1px solid white;
[email protected]fd9c0d92010-03-23 17:47:49126}
127
128.logSourceEntry {
129 margin: 5px;
130}
131
132.logSourceEntry * p {
133 font-weight: bold;
134 font-size: 12px;
135}
136
137.logSourceEntry * td {
138 font-size: 10px;
139}
[email protected]daac7522010-04-02 18:28:52140
141#categoryTabHandles ul {
142 list-style: none;
143 padding: 0;
144 margin: 0;
145}
146
147#categoryTabHandles {
148 border-bottom: 1px solid #555;
149 background: #aaa;
[email protected]2bd19d9b2010-05-11 00:58:24150 overflow: hidden;
[email protected]daac7522010-04-02 18:28:52151}
152
153#categoryTabHandles li {
154 float: left;
155 margin-left: 5px;
156}
157
158#categoryTabHandles a {
159 text-decoration: none;
160 text-align: center;
[email protected]2bd19d9b2010-05-11 00:58:24161 display: inline-block;
162 margin-top: 4px;
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;
[email protected]daac7522010-04-02 18:28:52167 background: #ccc;
168}
169
170#categoryTabHandles a:hover {
171 background: #eee;
172}
173
174#categoryTabHandles a:visited,
175#categoryTabHandles a {
176 color: blue;
177}
178
179#categoryTabHandles .selected {
180 background: white;
181}
182
183#categoryTabHandles a.selected {
184 position:relative;
[email protected]2bd19d9b2010-05-11 00:58:24185 top: 3px;
[email protected]daac7522010-04-02 18:28:52186 color: black;
187}
188
189#detailsLogBox,
[email protected]a0360d82010-04-05 19:28:36190#detailsTimelineBox,
[email protected]41cc8f72010-05-10 17:52:02191#httpCacheTabContent,
[email protected]483bf122010-05-04 20:41:24192#proxyTabContent,
193#dataTabContent,
194#dnsTabContent,
195#testTabContent {
[email protected]daac7522010-04-02 18:28:52196 overflow: auto;
[email protected]483bf122010-05-04 20:41:24197 padding: 10px;
[email protected]a0360d82010-04-05 19:28:36198}
199
200#proxyTabContent td,
201#proxyTabContent th {
202 font-size: 12px;
203}