/* * Styling for Special:Watchlist and Special:RecentChanges */ .mw-changeslist-line-watched .mw-title { font-weight: bold; } /* * Titles, including username links, and also tag names * are prone to getting jumbled up * with other titles, usernames, etc. in mixed RTL-LTR environment. */ .mw-changeslist .mw-tag-marker, .mw-changeslist .mw-title { unicode-bidi: embed; } /* Colored watchlist and recent changes numbers */ .mw-plusminus-pos { color: #006400; /* dark green */ } .mw-plusminus-neg { color: #8b0000; /* dark red */ } .mw-plusminus-null { color: #a2a9b1; /* gray */ } /* * Bidi-isolate these numbers. * See https://phabricator.wikimedia.org/T93484 */ .mw-plusminus-pos, .mw-plusminus-neg, .mw-plusminus-null { unicode-bidi: -moz-isolate; unicode-bidi: isolate; } /* Prevent FOUC if legend is initially collapsed */ .mw-changeslist-legend.mw-collapsed .mw-collapsible-content { display: none; } .mw-changeslist-legend.mw-collapsed { margin-bottom: 0; } /* Prevent pushing down the content if legend is collapsed */ .mw-changeslist-legend.mw-collapsed ~ ul:first-of-type > li:first-child, .mw-changeslist-legend.mw-collapsed + h4 + div > table.mw-changeslist-line:first-child { clear: right; } /* Hide RCFilters highlight containers if RCFilters is not enabled. This is overridden in mw.ui.rcfilters.ChangesListWrapperWidget.less if RCFilters is enabled. */ .mw-rcfilters-ui-highlights { display: none; } /* Content dividers */ /* @todo FIXME: Hard coded ". .". Is there a message for this? Should there be? */ .mw-changeslist-separator:empty:before { content: '. .'; } .comment--without-parentheses, .mw-changeslist-links, .mw-diff-bytes, .mw-tag-markers, .mw-uctop { &:before { content: '@{msg-parentheses-start}'; } &:after { content: '@{msg-parentheses-end}'; } } .mw-changeslist-links { display: inline-block; > span:not( :first-child ):before { content: '@{msg-pipe-separator}'; } }