]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - resources/src/mediawiki.special/mediawiki.special.changeslist.css
MediaWiki 1.30.2-scripts2
[autoinstalls/mediawiki.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 }