浏览代码

Add underline effect to clickable notification labels (#3757)

tturturiello 1 月之前
父节点
当前提交
5318368879
共有 2 个文件被更改,包括 12 次插入0 次删除
  1. 6 0
      src/main/resources/css/dark_theme.css
  2. 6 0
      src/main/resources/css/light_theme.css

+ 6 - 0
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                                                                   *

+ 6 - 0
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                                                                   *