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