username & userlinks should appear on a separate line on RecentChanges and Watchlist

Followup to I30aba29 fixes an issue where the user links (talk|contribs)
were pushed on a new line.

Bug: T236328
Change-Id: I52871ffc643b0484b62f8a2049101027d0de7d50
This commit is contained in:
Jan Drewniak 2020-01-06 14:56:09 +01:00
parent 52bc6f6989
commit 08b82c025e

View file

@ -166,8 +166,15 @@ ul.mw-contributions-list li .mw-rollback-link {
// It is unnecessary on Special:Contributions since all contributions are by the same user.
.mw-special-Watchlist,
.mw-special-Recentchanges {
.mw-userlink {
display: block;
clear: both;
.mw-userlink,
.mw-usertoollinks {
float: none;
}
.mw-userlink:before,
.mw-usertoollinks:after {
content: '';
display: table;
width: 100%;
}
}