summaryrefslogtreecommitdiff
path: root/resources/mediawiki/mediawiki.debug.css
blob: 513cb8475b0b7b9b647deb7320413d69db4902d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
.mw-debug {
	width: 100%;
	background-color: #eee;
	border-top: 1px solid #aaa;
}

.mw-debug pre {
	font-size: 11px;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
}

.mw-debug table {
	border-spacing: 0;
	width: 100%;
	table-layout: fixed;
}

.mw-debug table tr {
	background-color: #fff;
}

.mw-debug table tr:nth-child(even) {
	background-color: #f9f9f9;
}

.mw-debug table td, .mw-debug table th  {
	padding: 4px 10px;
}

.mw-debug table td {
	border-bottom: 1px solid #eee;
	word-wrap: break-word;
}

.mw-debug table td.nr {
	text-align: right;
}

.mw-debug table td span.stats {
	color: #808080;
}

.mw-debug ul {
	margin: 0;
	list-style: none;
}

.mw-debug li {
	padding: 4px 0;
	width: 100%;
}

.mw-debug-bits {
	text-align: center;
	border-bottom: 1px solid #aaa;
}

.mw-debug-bit {
	display: inline-block;
	padding: 10px 5px;
	font-size: 13px;
	/* IE-hack for display: inline-block */
	zoom: 1;
	*display:inline;
}

.mw-debug-panelink {
	background-color: #eee;
	border-right: 1px solid #ccc;
}

.mw-debug-panelink:first-child {
	border-left: 1px solid #ccc;
}

.mw-debug-panelink:hover {
	background-color: #fefefe;
	cursor: pointer;
}
.mw-debug-panelink.current {
	background-color: #dedede;

}
a.mw-debug-panelabel,
a.mw-debug-panelabel:visited {
	color: #000;
}

.mw-debug-pane {
	height: 300px;
	overflow: scroll;
	display: none;
	font-size: 11px;
	background-color: #e1eff2;
	box-sizing: border-box;
}

#mw-debug-pane-debuglog,
#mw-debug-pane-request {
	padding: 20px;
}

#mw-debug-pane-request table {
	width: 100%;
	margin: 10px 0 30px;
}

#mw-debug-pane-request tr,
#mw-debug-pane-request th,
#mw-debug-pane-request td,
#mw-debug-pane-request table {
	border: 1px solid #D0DBB3;
	border-collapse: collapse;
	margin: 0;
}

#mw-debug-pane-request th,
#mw-debug-pane-request td {
	font-size: 12px;
	padding: 8px 10px;
}

#mw-debug-pane-request th {
	background-color: #F1F7E2;
	font-weight: bold;
}

#mw-debug-pane-request td {
	background-color: white;
}

#mw-debug-console tr td:first-child {
	font-weight: bold;
	vertical-align: top;
}

#mw-debug-console tr td:last-child {
	vertical-align: top;
}

.mw-debug-console-log {
	background-color: #add8e6;
}

.mw-debug-console-warn {
	background-color: #ffa07a;
}

.mw-debug-console-deprecated {
	background-color: #ffb6c1;
}

.mw-debug-backtrace {
	padding: 5px 10px;
	margin: 5px;
	background-color: #dedede;
}

.mw-debug-backtrace span {
	font-weight: bold;
	color: #111;
}

.mw-debug-backtrace ul {
	padding-left: 10px;
}

.mw-debug-backtrace li {
	width: auto;
	padding: 0;
	color: #333;
	font-size: 10px;
	margin-bottom: 0;
	line-height: 1em;
}

/* Cheapo hack to hide the first 3 lines of the backtrace */
.mw-debug-backtrace li:nth-child(-n+3) {
	display: none;
}