Merge "Add SPARQL client to core"
[lhc/web/wiklou.git] / resources / src / mediawiki.special / mediawiki.special.changeslist.css
1 /*!
2 * Styling for Special:Watchlist and Special:RecentChanges
3 */
4
5 .mw-changeslist-line-watched .mw-title {
6 font-weight: bold;
7 }
8
9 /*
10 * Titles, including username links, and also tag names
11 * are prone to getting jumbled up
12 * with other titles, usernames, etc. in mixed RTL-LTR environment.
13 */
14 .mw-changeslist .mw-tag-marker,
15 .mw-changeslist .mw-title {
16 unicode-bidi: embed;
17 }
18
19 /* Colored watchlist and recent changes numbers */
20 .mw-plusminus-pos {
21 color: #006400; /* dark green */
22 }
23
24 .mw-plusminus-neg {
25 color: #8b0000; /* dark red */
26 }
27
28 .mw-plusminus-null {
29 color: #a2a9b1; /* gray */
30 }
31
32 /*
33 * Bidi-isolate these numbers.
34 * See https://phabricator.wikimedia.org/T93484
35 */
36 .mw-plusminus-pos,
37 .mw-plusminus-neg,
38 .mw-plusminus-null {
39 unicode-bidi: -moz-isolate;
40 unicode-bidi: isolate;
41 }
42
43 /* Prevent FOUC if legend is initially collapsed */
44 .mw-changeslist-legend.mw-collapsed .mw-collapsible-content {
45 display: none;
46 }
47
48 .mw-changeslist-legend.mw-collapsed {
49 margin-bottom: 0;
50 }
51
52 /* Prevent pushing down the content if legend is collapsed */
53 .mw-changeslist-legend.mw-collapsed ~ ul:first-of-type > li:first-child,
54 .mw-changeslist-legend.mw-collapsed + h4 + div > table.mw-changeslist-line:first-child {
55 clear: right;
56 }