sync both themes with SeaMonkey classic changes in SM 2.22 cycle
[themes.git] / LCARStrek / browser / devtools / netmonitor.css
... / ...
CommitLineData
1/* vim:set ts=2 sw=2 sts=2 et: */
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6window {
7 padding: 0;
8}
9
10#body {
11 background-color: #000000;
12}
13
14/* Network requests table */
15
16#requests-menu-empty-notice {
17 background-color: #A09090;
18 border-radius: 8px;
19 padding: 12px;
20 font-size: 110%;
21 color: #000000;
22}
23
24#requests-menu-toolbar {
25}
26
27#requests-menu-toolbar > .toolbar-box > .toolbar-startcap,
28#requests-menu-toolbar > .toolbar-box > .toolbar-endcap {
29 display: none;
30}
31
32.requests-menu-header:first-child {
33 -moz-padding-start: 4px;
34 -moz-margin-start: 4px;
35}
36
37.requests-menu-subitem {
38 padding: 4px;
39}
40
41.requests-menu-header:not(:last-child),
42.requests-menu-subitem:not(:last-child) {
43 -moz-border-end: 1px solid #9C9CFF;
44}
45
46.requests-menu-header-button,
47#requests-menu-status-button {
48 background-color: transparent;
49 border-radius: 0;
50 min-width: 20px;
51 margin: 0;
52 font-weight: inherit !important;
53 transition: background-color 0.1s ease-in-out;
54}
55
56.requests-menu-header-button > .button-box,
57#requests-menu-status-button > .button-box {
58 border-radius: 0;
59 -moz-padding-start: 0;
60 -moz-padding-end: 0;
61 border: 0;
62}
63
64.requests-menu-header-button:hover {
65 background-color: #FFCF00;
66}
67
68.requests-menu-header-button:hover:active {
69 background-color: #FF9F00;
70}
71
72.requests-menu-header-button:not(:active)[sorted] {
73 background-color: #008484;
74}
75
76.requests-menu-header-button:not(:active)[sorted=ascending] {
77 background-image: radial-gradient(farthest-side at center top, rgba(0,0,0,.7), rgba(0,0,0,0.3));
78 background-size: 100% 1px;
79 background-repeat: no-repeat;
80}
81
82.requests-menu-header-button:not(:active)[sorted=descending] {
83 background-image: radial-gradient(farthest-side at center bottom, rgba(0,0,0,.7), rgba(0,0,0,0.3));
84 background-size: 100% 1px;
85 background-repeat: no-repeat;
86 background-position: bottom;
87}
88
89#requests-menu-status-button {
90 border: none;
91}
92
93#requests-menu-status-button > .button-box {
94 padding: 0;
95}
96
97/* Network requests table: specific column dimensions */
98
99.requests-menu-status-and-method {
100 width: 8em;
101}
102
103.requests-menu-status {
104 width: 10px;
105 height: 10px;
106 margin: 0px 2px;
107}
108
109.requests-menu-method {
110 text-align: center;
111 font-weight: 600;
112}
113
114.requests-menu-file {
115 width: 16em;
116}
117
118.requests-menu-domain {
119 width: 16em;
120}
121
122.requests-menu-type {
123 text-align: center;
124 width: 4em;
125}
126
127.requests-menu-size {
128 text-align: center;
129 width: 8em;
130}
131
132/* Network requests table: status codes */
133
134.requests-menu-status {
135 background-color: #A09090;
136 -moz-margin-start: 5px;
137 -moz-margin-end: 5px;
138 border-radius: 20px;
139 border: 1px solid #000000;
140 transition: background-color 0.5s ease-in-out;
141}
142
143.requests-menu-status[code^="1"] {
144 background-color: #9C9CFF;
145}
146
147.requests-menu-status[code^="2"] {
148 background-color: #008484;
149}
150
151.requests-menu-status[code^="3"] {
152 background-color: #FF9F00;
153}
154
155.requests-menu-status[code^="4"] {
156 background-color: #FF0000;
157}
158
159.requests-menu-status[code^="5"] {
160 background-color: #6000CF;
161}
162
163/* Network requests table: waterfall header */
164
165#requests-menu-waterfall-label {
166 -moz-padding-start: 8px;
167 -moz-padding-end: 8px;
168}
169
170.requests-menu-timings-division {
171 width: 100px;
172 padding-top: 1px;
173 -moz-padding-start: 4px;
174 -moz-border-start: 1px dotted #000000;
175 font-size: 90%;
176 pointer-events: none;
177}
178
179.requests-menu-timings-division:not(:first-child) {
180 -moz-margin-start: -100px !important; /* Don't affect layout. */
181}
182
183.requests-menu-timings-division:-moz-locale-dir(ltr) {
184 transform-origin: left center;
185}
186
187.requests-menu-timings-division:-moz-locale-dir(rtl) {
188 transform-origin: right center;
189}
190
191/* Network requests table: waterfall items */
192
193.requests-menu-subitem.requests-menu-waterfall {
194 -moz-padding-start: 4px;
195 -moz-padding-end: 4px;
196 background-repeat: repeat-y; /* Background created on a <canvas> in js. */
197 margin-top: -1px; /* Compensate borders. */
198 margin-bottom: -1px;
199}
200
201.requests-menu-subitem.requests-menu-waterfall:-moz-locale-dir(rtl) {
202 background-position: right center;
203}
204
205.requests-menu-timings:-moz-locale-dir(ltr) {
206 transform-origin: left center;
207}
208
209.requests-menu-timings:-moz-locale-dir(rtl) {
210 transform-origin: right center;
211}
212
213.requests-menu-timings-total:-moz-locale-dir(ltr) {
214 transform-origin: left center;
215}
216
217.requests-menu-timings-total:-moz-locale-dir(rtl) {
218 transform-origin: right center;
219}
220
221.requests-menu-timings-total {
222 -moz-padding-start: 8px;
223 font-size: 85%;
224 font-weight: 600;
225}
226
227.requests-menu-timings-cap {
228 width: 4px;
229 height: 10px;
230 border: 1px solid #FFCF00;
231}
232
233.requests-menu-timings-cap.start {
234 -moz-border-end: none;
235}
236
237.requests-menu-timings-cap.end {
238 -moz-border-start: none;
239}
240
241.requests-menu-timings-cap.start:-moz-locale-dir(ltr) {
242 border-radius: 4px 0 0 4px;
243 transform-origin: right center;
244}
245
246.requests-menu-timings-cap.start:-moz-locale-dir(rtl) {
247 -moz-border-start: none;
248 border-radius: 0 4px 4px 0;
249 transform-origin: left center;
250}
251
252.requests-menu-timings-cap.end:-moz-locale-dir(ltr) {
253 border-radius: 0 4px 4px 0;
254 transform-origin: left center;
255}
256
257.requests-menu-timings-cap.end:-moz-locale-dir(rtl) {
258 border-radius: 4px 0 0 4px;
259 transform-origin: right center;
260}
261
262.requests-menu-timings-box {
263 height: 10px;
264 border-top: 1px solid #FFCF00;
265 border-bottom: 1px solid #FFCF00;
266}
267
268.requests-menu-timings-box.blocked,
269.requests-menu-timings-cap.blocked {
270 background-color: #FF0000;
271}
272
273.requests-menu-timings-box.dns,
274.requests-menu-timings-cap.dns {
275 background-color: #6000CF;
276}
277
278.requests-menu-timings-box.connect,
279.requests-menu-timings-cap.connect {
280 background-color: #FF9F00;
281}
282
283.requests-menu-timings-box.send,
284.requests-menu-timings-cap.send {
285 background-color: #FFCF00;
286}
287
288.requests-menu-timings-box.wait,
289.requests-menu-timings-cap.wait {
290 background-color: #9C9CFF;
291}
292
293.requests-menu-timings-box.receive,
294.requests-menu-timings-cap.receive {
295 background-color: #A09090;
296}
297
298/* SideMenuWidget */
299
300.side-menu-widget-item:nth-child(even) {
301 background: rgba(255,159,0,0.1);
302}
303
304.side-menu-widget-item-contents {
305 padding: 0;
306}
307
308/* Network request details */
309
310#details-pane {
311 background-color: #000000;
312 max-width: 500px;
313}
314
315#details-pane-toggle {
316 list-style-image: url("chrome://browser/skin/devtools/debugger-collapse.png");
317 -moz-image-region: rect(0px,16px,16px,0px);
318}
319
320#details-pane-toggle[pane-collapsed] {
321 list-style-image: url("chrome://browser/skin/devtools/debugger-expand.png");
322}
323
324#details-pane-toggle:hover,
325#details-pane-toggle:hover:active {
326 -moz-image-region: rect(0px,32px,16px,16px);
327}
328
329/* Network request details tabpanels */
330
331.tabpanel-content {
332 background-color: #000000;
333 color: #FF9F00;
334}
335
336.tabpanel-summary-container {
337 padding: 1px;
338}
339
340.tabpanel-summary-label {
341 -moz-padding-start: 4px;
342 -moz-padding-end: 3px;
343 font-weight: 600;
344 color: #9C9CFF;
345}
346
347.tabpanel-summary-value {
348 -moz-padding-start: 3px;
349 font-family: "Liberation Mono", Consolas, "Courier New", monospace;
350}
351
352/* Headers tabpanel */
353
354#headers-summary-status,
355#headers-summary-version {
356 padding-bottom: 2px;
357}
358
359#headers-summary-size {
360 padding-top: 2px;
361}
362
363/* Response tabpanel */
364
365#response-content-info-header {
366 background-color: #A09090;
367 color: #000000;
368 margin: 0;
369 padding: 5px 8px;
370}
371
372#response-content-image-box {
373 padding-top: 10px;
374 padding-bottom: 10px;
375}
376
377#response-content-image {
378 background: #FFFFFF;
379 border: 1px dashed #A09090;
380 margin-bottom: 10px;
381}
382
383/* Timings tabpanel */
384
385#timings-tabpanel .tabpanel-summary-label {
386 width: 10em;
387}
388
389#timings-tabpanel .requests-menu-timings-box {
390 transition: transform 0.2s ease-out;
391 min-width: 1px;
392}
393
394#timings-tabpanel .requests-menu-timings-total {
395 transition: transform 0.2s ease-out;
396}
397
398/* Footer */
399
400#requests-menu-footer {
401 border-top: 1px solid #9C9CFF;
402 padding-top: 3px;
403}
404
405.requests-menu-footer-button,
406.requests-menu-footer-label {
407 min-width: 1em;
408 margin: 0;
409 -moz-margin-end: 3px;
410 border: none;
411 padding: 0px 1.5vw;
412/* color: #fff;*/
413}
414
415.requests-menu-footer-spacer {
416 min-width: 2px;
417}
418
419.requests-menu-footer-spacer,
420.requests-menu-footer-button {
421}
422
423.requests-menu-footer-button {
424}
425
426.requests-menu-footer-button:hover {
427}
428
429.requests-menu-footer-button:hover:active {
430}
431
432.requests-menu-footer-button:not(:active)[checked] {
433}
434
435.requests-menu-footer-label {
436 font-weight: 600;
437}
438
439/* Responsive sidebar */
440@media (max-width: 700px) {
441 #requests-menu-toolbar {
442 height: 24px;
443 }
444
445 .requests-menu-header-button {
446 min-height: 23px; /* Remaining 1px comes from border of the toolbar. */
447 }
448
449 .requests-menu-footer-button,
450 .requests-menu-footer-label {
451 padding: 0px 2vw;
452 }
453
454 #details-pane {
455 max-width: none;
456 margin: 0 !important;
457 /* To prevent all the margin hacks to hide the sidebar. */
458 }
459
460 .requests-menu-status-and-method {
461 width: 16vw;
462 }
463
464 .requests-menu-file,
465 .requests-menu-domain {
466 width: 30vw;
467 }
468
469 .requests-menu-type {
470 width: 8vw;
471 }
472
473 .requests-menu-size {
474 width: 16vw;
475 border-width: 0 !important;
476 box-shadow: none !important;
477 /* The "Timeline" header is not visible anymore, and thus the
478 right border and box-shadow of "Size" column should be hidden. */
479 }
480}
481
482@media (min-width: 701px) {
483 #network-table[type-overflows] .requests-menu-domain {
484 border-width: 0 !important;
485 box-shadow: none !important;
486 /* The "Type" header is not visible anymore, and thus the
487 right border and box-shadow of "Domain" column should be hidden. */
488 }
489
490 #network-table[domain-overflows] .requests-menu-file {
491 border-width: 0 !important;
492 box-shadow: none !important;
493 /* The "Domain" header is not visible anymore, and thus the
494 right border and box-shadow of "File" column should be hidden. */
495 }
496}