From 531836887982a77129925dc9fc39067f1a46290b Mon Sep 17 00:00:00 2001 From: tturturiello <91257004+tturturiello@users.noreply.github.com> Date: Wed, 26 Feb 2025 11:53:46 +0100 Subject: [PATCH] Add underline effect to clickable notification labels (#3757) --- src/main/resources/css/dark_theme.css | 6 ++++++ src/main/resources/css/light_theme.css | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/main/resources/css/dark_theme.css b/src/main/resources/css/dark_theme.css index abb6efe57..4d3db3968 100644 --- a/src/main/resources/css/dark_theme.css +++ b/src/main/resources/css/dark_theme.css @@ -359,6 +359,12 @@ -fx-background-color: PRIMARY; } +.notification-debug:hover .notification-label, +.notification-update:hover .notification-label, +.notification-support:hover .notification-label { + -fx-underline:true; +} + /******************************************************************************* * * * ScrollBar * diff --git a/src/main/resources/css/light_theme.css b/src/main/resources/css/light_theme.css index 516dd0b26..11cb1a9df 100644 --- a/src/main/resources/css/light_theme.css +++ b/src/main/resources/css/light_theme.css @@ -358,6 +358,12 @@ -fx-background-color: PRIMARY; } +.notification-debug:hover .notification-label, +.notification-update:hover .notification-label, +.notification-support:hover .notification-label { + -fx-underline:true; +} + /******************************************************************************* * * * ScrollBar *