[jquery.footHovzer] new plugin for mw-log-console and mw-debug-toolbar
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.debug.css
1 .mw-debug {
2 width: 100%;
3 text-align: left;
4 background-color: #eee;
5 border-top: 1px solid #aaa;
6 }
7
8 .mw-debug pre {
9 font-family: Monaco, "Consolas", "Lucida Console", "Courier New", monospace;
10 font-size: 11px;
11 padding: 0;
12 margin: 0;
13 background: none;
14 border: none;
15 }
16
17 .mw-debug table {
18 border-spacing: 0;
19 width: 100%;
20 table-layout: fixed;
21 }
22
23 .mw-debug table tr {
24 background-color: #fff;
25 }
26
27 .mw-debug table tr:nth-child(even) {
28 background-color: #f9f9f9;
29 }
30
31 .mw-debug table td {
32 padding: 4px 10px;
33 border-bottom: 1px solid #eee;
34 word-wrap: break-word;
35 }
36
37 .mw-debug table td.nr {
38 text-align: right;
39 }
40
41 .mw-debug table td span.stats {
42 color: #808080;
43 }
44
45 .mw-debug ul {
46 margin: 0;
47 list-style: none;
48 }
49
50 .mw-debug li {
51 padding: 4px 0;
52 width: 100%;
53 }
54
55 .mw-debug-bits {
56 text-align: center;
57 border-bottom: 1px solid #aaa;
58 }
59
60 .mw-debug-bit {
61 display: inline-block;
62 padding: 10px 5px;
63 font-size: 13px;
64 }
65
66 .mw-debug-panelink {
67 background-color: #eee;
68 border-right: 1px solid #ccc;
69 }
70
71 .mw-debug-panelink:first-child {
72 border-left: 1px solid #ccc;
73 }
74
75 .mw-debug-panelink:hover {
76 background-color: #fefefe;
77 cursor: pointer;
78 }
79 .mw-debug-panelink.current {
80 background-color: #dedede;
81
82 }
83 a.mw-debug-panelabel,
84 a.mw-debug-panelabel:visited {
85 color: #000;
86 }
87
88 .mw-debug-pane {
89 height: 300px;
90 overflow: scroll;
91 display: none;
92 font-size: 11px;
93 background-color: #e1eff2;
94 box-sizing: border-box;
95 }
96
97 #mw-debug-pane-debuglog,
98 #mw-debug-pane-request {
99 padding: 20px;
100 }
101
102 #mw-debug-pane-request table {
103 width: 100%;
104 margin: 10px 0 30px;
105 }
106
107 #mw-debug-pane-request tr,
108 #mw-debug-pane-request th,
109 #mw-debug-pane-request td,
110 #mw-debug-pane-request table {
111 border: 1px solid #D0DBB3;
112 border-collapse: collapse;
113 margin: 0;
114 }
115
116 #mw-debug-pane-request th,
117 #mw-debug-pane-request td {
118 font-size: 12px;
119 padding: 8px 10px;
120 }
121
122 #mw-debug-pane-request th {
123 background-color: #F1F7E2;
124 font-weight: bold;
125 }
126
127 #mw-debug-pane-request td {
128 background-color: white;
129 }
130
131 #mw-debug-console tr td:first-child {
132 font-weight: bold;
133 vertical-align: top;
134 }
135
136 #mw-debug-console tr td:last-child {
137 vertical-align: top;
138 }
139
140 .mw-debug-console-log {
141 background-color: #add8e6;
142 }
143
144 .mw-debug-console-warn {
145 background-color: #ffa07a;
146 }
147
148 .mw-debug-console-deprecated {
149 background-color: #ffb6c1;
150 }
151
152 .mw-debug-backtrace {
153 padding: 5px 10px;
154 margin: 5px;
155 background-color: #dedede;
156 }
157
158 .mw-debug-backtrace span {
159 font-weight: bold;
160 color: #111;
161 }
162
163 .mw-debug-backtrace ul {
164 padding-left: 10px;
165 }
166
167 .mw-debug-backtrace li {
168 width: auto;
169 padding: 0;
170 color: #333;
171 font-size: 10px;
172 margin-bottom: 0;
173 line-height: 1em;
174 }
175
176 /* Cheapo hack to hide the first 3 lines of the backtrace */
177 .mw-debug-backtrace li:nth-child(-n+3) {
178 display: none;
179 }