follow up to r114081: qqq, and to r114082: match rename
[mediawiki.git] / resources / mediawiki / mediawiki.debug.css
blob149e1bffc33b397959d06af1154972a265c88523
1 .mw-debug {
2 width: 100%;
3 text-align: left;
4 background-color: #eee;
5 border-top: 1px solid #aaa;
8 .mw-debug pre {
9 font-size: 11px;
10 padding: 0;
11 margin: 0;
12 background: none;
13 border: none;
16 .mw-debug table {
17 border-spacing: 0;
18 width: 100%;
19 table-layout: fixed;
22 .mw-debug table tr {
23 background-color: #fff;
26 .mw-debug table tr:nth-child(even) {
27 background-color: #f9f9f9;
30 .mw-debug table td, .mw-debug table th {
31 padding: 4px 10px;
34 .mw-debug table td {
35 border-bottom: 1px solid #eee;
36 word-wrap: break-word;
39 .mw-debug table td.nr {
40 text-align: right;
43 .mw-debug table td span.stats {
44 color: #808080;
47 .mw-debug ul {
48 margin: 0;
49 list-style: none;
52 .mw-debug li {
53 padding: 4px 0;
54 width: 100%;
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;
66 /* IE-hack for display: inline-block */
67 zoom: 1;
68 *display:inline;
71 .mw-debug-panelink {
72 background-color: #eee;
73 border-right: 1px solid #ccc;
76 .mw-debug-panelink:first-child {
77 border-left: 1px solid #ccc;
80 .mw-debug-panelink:hover {
81 background-color: #fefefe;
82 cursor: pointer;
84 .mw-debug-panelink.current {
85 background-color: #dedede;
88 a.mw-debug-panelabel,
89 a.mw-debug-panelabel:visited {
90 color: #000;
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;
102 #mw-debug-pane-debuglog,
103 #mw-debug-pane-request {
104 padding: 20px;
107 #mw-debug-pane-request table {
108 width: 100%;
109 margin: 10px 0 30px;
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;
121 #mw-debug-pane-request th,
122 #mw-debug-pane-request td {
123 font-size: 12px;
124 padding: 8px 10px;
127 #mw-debug-pane-request th {
128 background-color: #F1F7E2;
129 font-weight: bold;
132 #mw-debug-pane-request td {
133 background-color: white;
136 #mw-debug-console tr td:first-child {
137 font-weight: bold;
138 vertical-align: top;
141 #mw-debug-console tr td:last-child {
142 vertical-align: top;
145 .mw-debug-console-log {
146 background-color: #add8e6;
149 .mw-debug-console-warn {
150 background-color: #ffa07a;
153 .mw-debug-console-deprecated {
154 background-color: #ffb6c1;
157 .mw-debug-backtrace {
158 padding: 5px 10px;
159 margin: 5px;
160 background-color: #dedede;
163 .mw-debug-backtrace span {
164 font-weight: bold;
165 color: #111;
168 .mw-debug-backtrace ul {
169 padding-left: 10px;
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;
181 /* Cheapo hack to hide the first 3 lines of the backtrace */
182 .mw-debug-backtrace li:nth-child(-n+3) {
183 display: none;