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