CSS clean up
[lhc/web/wiklou.git] / resources / mediawiki.special / mediawiki.special.changeslist.css
1 /**
2 * Styling for Special:Watchlist and Special:RecentChanges
3 */
4
5 table.mw-enhanced-rc {
6 border: 0;
7 border-spacing: 0;
8 }
9
10 table.mw-enhanced-rc th,
11 table.mw-enhanced-rc td {
12 padding: 0;
13 vertical-align: top;
14 }
15
16 td.mw-enhanced-rc {
17 white-space: nowrap;
18 font-family: monospace;
19 }
20
21 .mw-enhanced-rc-time {
22 font-family: monospace;
23 }
24
25 table.mw-enhanced-rc td.mw-enhanced-rc-nested {
26 padding-left: 1em;
27 }
28
29 /* Show/hide arrows in enhanced changeslist */
30 .mw-enhanced-rc .collapsible-expander {
31 float: none;
32 }
33
34 /**
35 * If JS is disabled, the arrow is still needed
36 * for spacing, but ideally shouldn't be shown
37 */
38 .mw-enhanced-rc .mw-rc-openarrow {
39 visibility: hidden;
40 }
41
42 .mw-enhanced-rc.mw-made-collapsible .mw-rc-openarrow,
43 .mw-enhanced-rc .mw-rc-closearrow {
44 visibility: visible;
45 display: none;
46 }
47 .mw-enhanced-rc.mw-made-collapsible .mw-collapsible-toggle-collapsed .mw-rc-openarrow,
48 .mw-enhanced-rc.mw-made-collapsible .mw-collapsible-toggle-expanded .mw-rc-closearrow {
49 display: inline;
50 }