summaryrefslogtreecommitdiff
path: root/resources/mediawiki/mediawiki.debug.css
diff options
context:
space:
mode:
Diffstat (limited to 'resources/mediawiki/mediawiki.debug.css')
-rw-r--r--resources/mediawiki/mediawiki.debug.css185
1 files changed, 185 insertions, 0 deletions
diff --git a/resources/mediawiki/mediawiki.debug.css b/resources/mediawiki/mediawiki.debug.css
new file mode 100644
index 00000000..923d4a47
--- /dev/null
+++ b/resources/mediawiki/mediawiki.debug.css
@@ -0,0 +1,185 @@
+.mw-debug {
+ width: 100%;
+ text-align: left;
+ background-color: #eee;
+ border-top: 1px solid #aaa;
+}
+
+.mw-debug pre {
+ font-family: Monaco, "Consolas", "Lucida Console", "Courier New", monospace;
+ 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;
+}