Adding new debugging toolbar
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.debug.css
1 .mw-debug {
2 width: 100%;
3 text-align: left;
4 position: fixed;
5 bottom: 0;
6 background-color: #eee;
7 border-top: 1px solid #ccc;
8 }
9
10 .mw-debug pre {
11 font-family: Monaco, "Consolas", "Lucida Console", "Courier New", monospace;
12 font-size: 11px;
13 padding: 0;
14 margin: 0;
15 background: none;
16 border: none;
17 }
18
19 .mw-debug ul {
20 margin: 0;
21 list-style: none;
22 box-sizing: border-box;
23 }
24
25 .mw-debug li {
26 padding: 2px 5px;
27 width: 100%;
28 display: table;
29 }
30
31 .mw-debug-bit {
32 min-height: 25px;
33 display: inline-block;
34 padding: 5px;
35 border-right: 1px solid #ccc;
36 font-size: 13px;
37 }
38
39 .mw-debug-pane {
40 max-height: 300px;
41 overflow: scroll;
42 border-top: 2px solid #ccc;
43 display: none;
44 font-size: 11px;
45 background-color: #e1eff2;
46 box-sizing: border-box;
47 }
48
49 .mw-debug-right {
50 float: right;
51 }
52
53 #mw-debug-querylist tr {
54
55 }
56
57 #mw-debug-querylist td {
58 padding: 2px 5px;
59 border-bottom: 1px solid #ccc;
60 }
61
62 .mw-debug-query-time {
63 color: #808080;
64 }
65
66 #mw-debug-pane-request {
67 padding: 20px;
68 }
69
70 #mw-debug-pane-request table {
71 width: 100%;
72 margin: 10px 0 30px;
73 }
74
75 #mw-debug-pane-request tr,
76 #mw-debug-pane-request th,
77 #mw-debug-pane-request td,
78 #mw-debug-pane-request table {
79 border: 1px solid #D0DBB3;
80 border-collapse: collapse;
81 margin: 0;
82 }
83
84 #mw-debug-pane-request th,
85 #mw-debug-pane-request td {
86 font-size: 12px;
87 padding: 8px 10px;
88 }
89
90 #mw-debug-pane-request th {
91 background-color: #F1F7E2;
92 font-weight: bold;
93 }
94
95 #mw-debug-pane-request td {
96 background-color: white;
97 }
98
99 #mw-debug-pane-querylist table {
100 border-spacing: 0;
101 }
102
103 #mw-debug-pane-includes li,
104 #mw-debug-pane-querylist tr td {
105 background-color: #ccc;
106 }
107
108 #mw-debug-pane-includes li:nth-child(odd),
109 #mw-debug-pane-querylist tr:nth-child(odd) td {
110 background-color: #ddd;
111 }