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