=== Description
- too much spacing
{F31770316 width=600}
= Developer notes
Basically requires a core change. The reason this regressed is that there is not a unique selector for this element (mw-changeslist-links is used by the user links too).
== Option 1
The space is caused by an invisible line of text.
{F31770330}
If this was wrapped in a span (core code change), we could display: none this to get:
{F31770332}
== Option 2
The undo and rollback link are wrapped in two span elements inside an element `mw-changeslist-links`. Annoyingly there are multiple `mw-changeslist-links`. A core change could add a new class to make this distinguisable from the other elements.
`
.mw-changeslist-links.unique-class > span { display: inline-block; float: right; }
`
{F31770339}