Merge "Improve sorting on SpecialWanted*-Pages"
[mediawiki.git] / resources / src / mediawiki / mediawiki.debug.less
blobdec0571542f3baf499fb6b4bc4fbb57244674614
1 .mw-debug {
2         width: 100%;
3         background-color: #eee;
4         border-top: 1px solid #aaa;
6         pre {
7                 font-size: 11px;
8                 padding: 0;
9                 margin: 0;
10                 background: none;
11                 border: 0;
12         }
14         table {
15                 border-spacing: 0;
16                 width: 100%;
17                 table-layout: fixed;
19                 td,
20                 th {
21                         padding: 4px 10px;
22                 }
24                 td {
25                         border-bottom: 1px solid #eee;
26                         word-wrap: break-word;
28                         &.nr {
29                                 text-align: right;
30                         }
32                         span.stats {
33                                 color: #808080;
34                         }
35                 }
37                 tr {
38                         background-color: #fff;
40                         &:nth-child( even ) {
41                                 background-color: #f9f9f9;
42                         }
43                 }
44         }
46         ul {
47                 margin: 0;
48                 list-style: none;
49         }
51         li {
52                 padding: 4px 0;
53                 width: 100%;
54         }
57 .mw-debug-bits {
58         text-align: center;
59         border-bottom: 1px solid #aaa;
62 .mw-debug-bit {
63         display: inline-block;
64         padding: 10px 5px;
65         font-size: 13px;
68 .mw-debug-panelink {
69         background-color: #eee;
70         border-right: 1px solid #ccc;
72         &:first-child {
73                 border-left: 1px solid #ccc;
74         }
76         &:hover {
77                 background-color: #fefefe;
78                 cursor: pointer;
79         }
81         &.current {
82                 background-color: #dedede;
83         }
86 a.mw-debug-panelabel,
87 a.mw-debug-panelabel:visited {
88         color: #000;
91 .mw-debug-pane {
92         height: 300px;
93         overflow: scroll;
94         display: none;
95         font-family: monospace;
96         font-size: 11px;
97         background-color: #e1eff2;
98         box-sizing: border-box;
101 #mw-debug-pane-debuglog,
102 #mw-debug-pane-request {
103         padding: 20px;
106 #mw-debug-pane-request {
107         table {
108                 width: 100%;
109                 margin: 10px 0 30px;
110         }
112         tr,
113         th,
114         td,
115         table {
116                 border: 1px solid #d0dbb3;
117                 border-collapse: collapse;
118                 margin: 0;
119         }
121         th,
122         td {
123                 font-size: 12px;
124                 padding: 8px 10px;
125         }
127         th {
128                 background-color: #f1f7e2;
129                 font-weight: bold;
130         }
132         td {
133                 background-color: #fff;
134         }
137 #mw-debug-console tr td {
138         &:first-child {
139                 font-weight: bold;
140                 vertical-align: top;
141         }
143         &:last-child {
144                 vertical-align: top;
145         }
148 .mw-debug-backtrace {
149         padding: 5px 10px;
150         margin: 5px;
151         background-color: #dedede;
153         span {
154                 font-weight: bold;
155                 color: #111;
156         }
158         ul {
159                 padding-left: 10px;
160         }
162         li {
163                 width: auto;
164                 padding: 0;
165                 color: #333;
166                 font-size: 10px;
167                 margin-bottom: 0;
168                 line-height: 1em;
169         }
172 .mw-debug-console-log {
173         background-color: #add8e6;
176 .mw-debug-console-warn {
177         background-color: #ffa07a;
180 .mw-debug-console-deprecated {
181         background-color: #ffb6c1;
184 /* Cheapo hack to hide the first 3 lines of the backtrace */
185 .mw-debug-backtrace li:nth-child( -n+3 ) {
186         display: none;