[mediawiki.debug] highlight current pane and styling
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.debug.css
1 .mw-debug {
2 width: 100%;
3 text-align: left;
4 position: fixed;
5 bottom: 0;
6 background-color: #eee;
7 border-top: 1px solid #aaa;
8 }
9
10 .mw-debug pre {
11 font-family: Monaco, "Consolas", "Lucida Console", "Courier New", monospace;
12 font-size: 11px;
13 padding: 0;
14 margin: 0;
15 background: none;
16 border: none;
17 }
18
19 .mw-debug table {
20 border-spacing: 0;
21 width: 100%;
22 }
23
24 .mw-debug table tr {
25 background-color: #fff;
26 }
27
28 .mw-debug table tr:nth-child(even) {
29 background-color: #f9f9f9;
30 }
31
32 .mw-debug table td {
33 padding: 4px 10px;
34 border-bottom: 1px solid #eee;
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 }
65
66 .mw-debug-panelink {
67 background-color: #eee;
68 border-right: 1px solid #ccc;
69 }
70
71 .mw-debug-panelink:first-child {
72 border-left: 1px solid #ccc;
73 }
74
75 .mw-debug-panelink:hover {
76 background-color: #fefefe;
77 cursor: pointer;
78 }
79 .mw-debug-panelink.current {
80 background-color: #dedede;
81
82 }
83 a.mw-debug-panelabel,
84 a.mw-debug-panelabel:visited {
85 color: #000;
86 }
87
88 .mw-debug-pane {
89 max-height: 300px;
90 overflow: scroll;
91 display: none;
92 font-size: 11px;
93 background-color: #e1eff2;
94 box-sizing: border-box;
95 }
96
97 #mw-debug-pane-debuglog,
98 #mw-debug-pane-request {
99 padding: 20px;
100 }
101
102 #mw-debug-pane-request table {
103 width: 100%;
104 margin: 10px 0 30px;
105 }
106
107 #mw-debug-pane-request tr,
108 #mw-debug-pane-request th,
109 #mw-debug-pane-request td,
110 #mw-debug-pane-request table {
111 border: 1px solid #D0DBB3;
112 border-collapse: collapse;
113 margin: 0;
114 }
115
116 #mw-debug-pane-request th,
117 #mw-debug-pane-request td {
118 font-size: 12px;
119 padding: 8px 10px;
120 }
121
122 #mw-debug-pane-request th {
123 background-color: #F1F7E2;
124 font-weight: bold;
125 }
126
127 #mw-debug-pane-request td {
128 background-color: white;
129 }