]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - resources/src/mediawiki.special/mediawiki.special.changeslist.enhanced.css
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / resources / src / mediawiki.special / mediawiki.special.changeslist.enhanced.css
1 /*!
2  * Styling for Special:Watchlist and Special:RecentChanges when preference 'usenewrc'
3  * a.k.a. Enhanced Recent Changes is enabled.
4  */
5
6 table.mw-enhanced-rc {
7         border: 0;
8         border-spacing: 0;
9 }
10
11 table.mw-enhanced-rc th,
12 table.mw-enhanced-rc td {
13         padding: 0;
14         vertical-align: top;
15 }
16
17 td.mw-enhanced-rc {
18         white-space: nowrap;
19         font-family: monospace, monospace;
20 }
21
22 .mw-enhanced-rc-time {
23         font-family: monospace, monospace;
24 }
25
26 table.mw-enhanced-rc td.mw-enhanced-rc-nested {
27         padding-left: 1em;
28 }
29
30 /* Show/hide arrows in enhanced changeslist */
31 .mw-enhanced-rc .collapsible-expander {
32         float: none;
33 }
34
35 /* If JS is disabled, the arrows or the placeholder space shouldn't be shown */
36 .client-nojs .mw-enhancedchanges-arrow-space {
37         display: none;
38 }
39
40 /*
41  * And if it's enabled, let's optimize the collapsing a little: hide the rows
42  * that would be hidden by jquery.makeCollapsible with CSS to save us some
43  * reflows and repaints. This doesn't work on browsers that don't fully support
44  * CSS2 (IE6), but it's okay, this will be done in JavaScript with old degraded
45  * performance instead.
46  */
47 .client-js table.mw-enhanced-rc.mw-collapsed tr + tr {
48         display: none;
49 }
50
51 .mw-enhancedchanges-arrow-space {
52         display: inline-block;
53         *display: inline; /* IE7 and below */
54         zoom: 1;
55         width: 15px;
56         height: 15px;
57 }
58
59 .mw-enhanced-watched .mw-enhanced-rc-time {
60         font-weight: bold;
61 }
62
63 span.changedby {
64         font-size: 95%;
65 }