Added wfProfileOut for early returns in ResourceLoaderModule::getDefinitionMtime
[mediawiki.git] / resources / mediawiki / mediawiki.debug.css
blob513cb8475b0b7b9b647deb7320413d69db4902d2
1 .mw-debug {
2 width: 100%;
3 background-color: #eee;
4 border-top: 1px solid #aaa;
7 .mw-debug pre {
8 font-size: 11px;
9 padding: 0;
10 margin: 0;
11 background: none;
12 border: none;
15 .mw-debug table {
16 border-spacing: 0;
17 width: 100%;
18 table-layout: fixed;
21 .mw-debug table tr {
22 background-color: #fff;
25 .mw-debug table tr:nth-child(even) {
26 background-color: #f9f9f9;
29 .mw-debug table td, .mw-debug table th {
30 padding: 4px 10px;
33 .mw-debug table td {
34 border-bottom: 1px solid #eee;
35 word-wrap: break-word;
38 .mw-debug table td.nr {
39 text-align: right;
42 .mw-debug table td span.stats {
43 color: #808080;
46 .mw-debug ul {
47 margin: 0;
48 list-style: none;
51 .mw-debug li {
52 padding: 4px 0;
53 width: 100%;
56 .mw-debug-bits {
57 text-align: center;
58 border-bottom: 1px solid #aaa;
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;
70 .mw-debug-panelink {
71 background-color: #eee;
72 border-right: 1px solid #ccc;
75 .mw-debug-panelink:first-child {
76 border-left: 1px solid #ccc;
79 .mw-debug-panelink:hover {
80 background-color: #fefefe;
81 cursor: pointer;
83 .mw-debug-panelink.current {
84 background-color: #dedede;
87 a.mw-debug-panelabel,
88 a.mw-debug-panelabel:visited {
89 color: #000;
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;
101 #mw-debug-pane-debuglog,
102 #mw-debug-pane-request {
103 padding: 20px;
106 #mw-debug-pane-request table {
107 width: 100%;
108 margin: 10px 0 30px;
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;
120 #mw-debug-pane-request th,
121 #mw-debug-pane-request td {
122 font-size: 12px;
123 padding: 8px 10px;
126 #mw-debug-pane-request th {
127 background-color: #F1F7E2;
128 font-weight: bold;
131 #mw-debug-pane-request td {
132 background-color: white;
135 #mw-debug-console tr td:first-child {
136 font-weight: bold;
137 vertical-align: top;
140 #mw-debug-console tr td:last-child {
141 vertical-align: top;
144 .mw-debug-console-log {
145 background-color: #add8e6;
148 .mw-debug-console-warn {
149 background-color: #ffa07a;
152 .mw-debug-console-deprecated {
153 background-color: #ffb6c1;
156 .mw-debug-backtrace {
157 padding: 5px 10px;
158 margin: 5px;
159 background-color: #dedede;
162 .mw-debug-backtrace span {
163 font-weight: bold;
164 color: #111;
167 .mw-debug-backtrace ul {
168 padding-left: 10px;
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;
180 /* Cheapo hack to hide the first 3 lines of the backtrace */
181 .mw-debug-backtrace li:nth-child(-n+3) {
182 display: none;