From 623840389df8fdc94ac9d3762e16f06a443f0f9f Mon Sep 17 00:00:00 2001
From: Robert Goldmann <deadlocker@gmx.de>
Date: Sun, 22 Nov 2020 13:49:02 +0100
Subject: [PATCH] cursor should be pointer on hovering what's new link

---
 src/main/resources/static/css/dark/style.css | 4 ++++
 src/main/resources/static/css/style.css      | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/src/main/resources/static/css/dark/style.css b/src/main/resources/static/css/dark/style.css
index 5839a347f..44a4b1448 100644
--- a/src/main/resources/static/css/dark/style.css
+++ b/src/main/resources/static/css/dark/style.css
@@ -649,6 +649,10 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) +
     margin-right: 15px;
 }
 
+.whatsNewLink:hover {
+    cursor: pointer;
+}
+
 .invisible {
     opacity: 0;
 }
diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css
index c4a384691..ca7ed7049 100644
--- a/src/main/resources/static/css/style.css
+++ b/src/main/resources/static/css/style.css
@@ -564,6 +564,10 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa
     margin-right: 15px;
 }
 
+.whatsNewLink:hover {
+    cursor: pointer;
+}
+
 .invisible {
     opacity: 0;
 }
-- 
GitLab