Remove drop shadows for tooltips in performance mode

This commit is contained in:
crschnick 2024-10-09 06:30:16 +00:00
parent 10ae05f887
commit e7c7886cba

View file

@ -1,3 +1,9 @@
.fancy-tooltip {
-fx-opacity: 1;
}
.root:performance .fancy-tooltip {
-fx-effect: NONE;
-fx-background-radius: 0;
-fx-border-radius: 0;
}