jquery.tablesorter: Fix pre-JS selector to match wikitext-generated sortable tables
[lhc/web/wiklou.git] / resources / src / mediawiki.special.changeslist.less
1 /*
2 * Styling for Special:Watchlist and Special:RecentChanges
3 */
4
5 .client-js .mw-input-hidden {
6 display: none;
7 }
8
9 /* Make sure namespace label is aligned correctly on mobile when checkboxes are displayed */
10 .mw-label.mw-namespace-label {
11 vertical-align: top;
12 }
13
14 .mw-changeslist-line-watched .mw-title {
15 font-weight: bold;
16 }
17
18 /*
19 * Titles, including username links, and also tag names
20 * are prone to getting jumbled up
21 * with other titles, usernames, etc. in mixed RTL-LTR environment.
22 */
23 .mw-changeslist .mw-tag-marker,
24 .mw-changeslist .mw-title {
25 unicode-bidi: embed;
26 }
27
28 /* Colored watchlist and recent changes numbers */
29 .mw-plusminus-pos {
30 color: #006400; /* dark green */
31 }
32
33 .mw-plusminus-neg {
34 color: #8b0000; /* dark red */
35 }
36
37 .mw-plusminus-null {
38 color: #a2a9b1; /* gray */
39 }
40
41 /*
42 * Bidi-isolate these numbers.
43 * See https://phabricator.wikimedia.org/T93484
44 */
45 .mw-plusminus-pos,
46 .mw-plusminus-neg,
47 .mw-plusminus-null {
48 unicode-bidi: -moz-isolate;
49 unicode-bidi: isolate;
50 }
51
52 /* Prevent FOUC if legend is initially collapsed */
53 .mw-changeslist-legend.mw-collapsed .mw-collapsible-content {
54 display: none;
55 }
56
57 .mw-changeslist-legend.mw-collapsed {
58 margin-bottom: 0;
59 }
60
61 /* Prevent pushing down the content if legend is collapsed */
62 .mw-changeslist-legend.mw-collapsed ~ ul:first-of-type > li:first-child,
63 .mw-changeslist-legend.mw-collapsed + h4 + div > table.mw-changeslist-line:first-child {
64 clear: right;
65 }
66
67 /* Hide RCFilters highlight containers if RCFilters is not enabled.
68 This is overridden in mw.ui.rcfilters.ChangesListWrapperWidget.less if RCFilters is enabled. */
69 .mw-rcfilters-ui-highlights {
70 display: none;
71 }