Merge "Expose LinksUpdate recursive flag with a getter"
[lhc/web/wiklou.git] / resources / src / mediawiki.special.changeslist / default.less
1 /*
2 * Styling for Special:Watchlist and Special:RecentChanges
3 */
4
5 /* Make sure namespace label is aligned correctly on mobile when checkboxes are displayed */
6 .mw-label.mw-namespace-label {
7 vertical-align: top;
8 }
9
10 .mw-changeslist-line-watched .mw-title {
11 font-weight: bold;
12 }
13
14 /* Colored watchlist and recent changes numbers */
15 .mw-plusminus-pos {
16 color: #006400; /* dark green */
17 }
18
19 .mw-plusminus-neg {
20 color: #8b0000; /* dark red */
21 }
22
23 .mw-plusminus-null {
24 color: #a2a9b1; /* gray */
25 }
26
27 /* Prevent FOUC if legend is initially collapsed */
28 .mw-changeslist-legend.mw-collapsed .mw-collapsible-content {
29 display: none;
30 }
31
32 .mw-changeslist-legend.mw-collapsed {
33 margin-bottom: 0;
34 }
35
36 /* Prevent pushing down the content if legend is collapsed */
37 .mw-changeslist-legend.mw-collapsed ~ ul:first-of-type > li:first-child,
38 .mw-changeslist-legend.mw-collapsed + h4 + div > table.mw-changeslist-line:first-child {
39 clear: right;
40 }
41
42 /* Hide RCFilters highlight containers if RCFilters is not enabled.
43 This is overridden in mw.ui.rcfilters.ChangesListWrapperWidget.less if RCFilters is enabled. */
44 .mw-rcfilters-ui-highlights {
45 display: none;
46 }