SpecialTrackingCategories: Read from the extension registry
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.content.json.css
1 /*!
2 * CSS for styling HTML-formatted JSON Schema objects
3 *
4 * @file
5 * @author Munaf Assaf <massaf@wikimedia.org>
6 */
7
8 .mw-json {
9 border-collapse: collapse;
10 border-spacing: 0;
11 font-style: normal;
12 }
13
14 .mw-json th,
15 .mw-json td {
16 border: 1px solid gray;
17 font-size: 16px;
18 padding: 0.5em 1em;
19 }
20
21 .mw-json .value {
22 background-color: #dcfae3;
23 font-family: monospace, monospace;
24 white-space: pre-wrap;
25 }
26
27 .mw-json-empty {
28 background-color: #fff;
29 font-style: italic;
30 }
31
32 .mw-json tr {
33 margin-bottom: 0.5em;
34 background-color: #eee;
35 }
36
37 .mw-json th {
38 background-color: #fff;
39 font-weight: normal;
40 }
41
42 .mw-json caption {
43 /* For stylistic reasons, suppress the caption of the outermost table */
44 display: none;
45 }
46
47 .mw-json table caption {
48 color: gray;
49 display: inline-block;
50 font-size: 10px;
51 font-style: italic;
52 margin-bottom: 0.5em;
53 text-align: left;
54 }