From fff0c5cea0de1c254861fca7198b132dffe0755b Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Fri, 13 Dec 2024 02:31:52 +0200 Subject: [PATCH] style(next): recent changes list: make the "undelete" links look again like a link --- src/public/stylesheets/theme-next/shell.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/public/stylesheets/theme-next/shell.css b/src/public/stylesheets/theme-next/shell.css index 74f569364..ea375d562 100644 --- a/src/public/stylesheets/theme-next/shell.css +++ b/src/public/stylesheets/theme-next/shell.css @@ -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; }