remove notification dropshadow in dark mode

This commit is contained in:
woodser 2025-05-21 08:18:55 -04:00
parent 231b3cd842
commit 9da818da8d
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
3 changed files with 8 additions and 22 deletions

View file

@ -2232,11 +2232,11 @@ textfield */
} }
.notification-popup-bg, .peer-info-popup-bg { .notification-popup-bg, .peer-info-popup-bg {
-fx-font-size: 1.077em; -fx-font-size: 0.846em;
-fx-text-fill: -bs-rd-font-dark; -fx-text-fill: -bs-rd-font-dark;
-fx-background-color: -bs-color-background-popup; -fx-background-color: -bs-color-background-popup;
-fx-background-insets: 44; -fx-background-insets: 44;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, 0, 0); -fx-effect: dropshadow(gaussian, -bs-text-color-dropshadow-light-mode, 44, 0, 0, 0);
-fx-background-radius: 15; -fx-background-radius: 15;
-fx-border-radius: 15; -fx-border-radius: 15;
} }
@ -2250,7 +2250,7 @@ textfield */
} }
.popup-dropshadow { .popup-dropshadow {
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 15, 0, 0, 0); -fx-effect: dropshadow(gaussian, -bs-text-color-dark, 15, 0, 0, 0);
} }
.notification-popup-headline, peer-info-popup-headline { .notification-popup-headline, peer-info-popup-headline {
@ -2259,22 +2259,6 @@ textfield */
-fx-text-fill: -bs-color-primary; -fx-text-fill: -bs-color-primary;
} }
.notification-popup-bg {
-fx-font-size: 0.846em;
-fx-background-insets: 44;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, -1, 3);
-fx-background-radius: 15;
-fx-border-radius: 15;
}
.peer-info-popup-bg {
-fx-font-size: 0.846em;
-fx-background-insets: 44;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, -1, 3);
-fx-background-radius: 15;
-fx-border-radius: 15;
}
.account-status-title { .account-status-title {
-fx-font-size: 0.769em; -fx-font-size: 0.769em;
-fx-font-family: "IBM Plex Sans Medium"; -fx-font-family: "IBM Plex Sans Medium";
@ -2547,7 +2531,7 @@ textfield */
} }
.popover > .border { .popover > .border {
-fx-stroke: linear-gradient(to bottom, -bs-text-color-transparent, -bs-text-color-transparent-dark) !important; -fx-stroke: linear-gradient(to bottom, -bs-text-color-transparent, -bs-text-color-dark) !important;
-fx-fill: -bs-background-color !important; -fx-fill: -bs-background-color !important;
} }

View file

@ -114,7 +114,8 @@
-bs-rd-font-confirmation-label: #504f52; -bs-rd-font-confirmation-label: #504f52;
-bs-rd-font-balance-label: #999999; -bs-rd-font-balance-label: #999999;
-bs-text-color-transparent-dark: rgba(45, 45, 49, 0.54); -bs-text-color-dark: rgba(45, 45, 49, 0.54);
-bs-text-color-dropshadow-light-mode: transparent;
-bs-text-color-transparent: rgba(29, 29, 33, 0.2); -bs-text-color-transparent: rgba(29, 29, 33, 0.2);
-bs-color-gray-line: #504f52; -bs-color-gray-line: #504f52;

View file

@ -70,7 +70,8 @@
-bs-rd-font-lighter: #a7a7a7; -bs-rd-font-lighter: #a7a7a7;
-bs-rd-font-confirmation-label: #504f52; -bs-rd-font-confirmation-label: #504f52;
-bs-rd-font-balance-label: #bbbbbb; -bs-rd-font-balance-label: #bbbbbb;
-bs-text-color-transparent-dark: rgba(0, 0, 0, 0.54); -bs-text-color-dark: rgba(0, 0, 0, 0.54);
-bs-text-color-dropshadow-light-mode: rgba(0, 0, 0, 0.54);
-bs-text-color-transparent: rgba(0, 0, 0, 0.2); -bs-text-color-transparent: rgba(0, 0, 0, 0.2);
-bs-color-gray-line: #979797; -bs-color-gray-line: #979797;
-bs-rd-separator: #dbdbdb; -bs-rd-separator: #dbdbdb;