Преглед на файлове

Add underline effect to clickable notification labels (#3757)

tturturiello преди 5 месеца
родител
ревизия
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                                                                   *