style(next): recent changes list: make the "undelete" links look again like a link

This commit is contained in:
Adorian Doran 2024-12-13 02:31:52 +02:00
parent cd30d7dd0f
commit fff0c5cea0

View File

@ -1111,11 +1111,13 @@ body .calendar-dropdown-widget .calendar-body a:hover {
/* Item title link */
.recent-changes-content ul li a {
color: currentColor
/* Note: Links with the "href" attribute starting with "javascript:" are not meant to be note
titles, but action links such as "undelete". */
.recent-changes-content ul li a:not([href^="javascript:"]) {
color: currentColor;
}
.recent-changes-content ul li a:hover {
.recent-changes-content ul li a:not([href^="javascript:"]):hover {
text-decoration: underline;
}