Merge "registration: Only allow one extension to set a specific config setting"
[lhc/web/wiklou.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 {
52 padding-top: 2px;
53 }
54
55 .mw-enhancedchanges-arrow-space {
56 display: inline-block;
57 *display: inline; /* IE7 and below */
58 zoom: 1;
59 width: 15px;
60 height: 15px;
61 }
62
63 .mw-enhanced-watched .mw-enhanced-rc-time {
64 font-weight: bold;
65 }
66
67 span.changedby {
68 font-size: 95%;
69 }