Reporter Info
Actual Issue
"Delete" text is red on red background resulting in invisible text.


Steps to Reproduce
Additional Info
Same here also with b1e4c563146ae34fff6a697393b6a1bc66b612f5, dark theme. It applies also for other destructive actions, like for example closing an unsaved window of gedit.
AFAIK, this bug was introduced from commit c3d3555, where all the dialog buttons was forced to be flat button style.
Here's a little patch I created to fix this issue for me:
diff --git src/_sass/gtk/_common-3.20.scss src/_sass/gtk/_common-3.20.scss
index 71a979fd..2ddf32ab 100644
--- src/_sass/gtk/_common-3.20.scss
+++ src/_sass/gtk/_common-3.20.scss
@@ -3442,7 +3442,7 @@ messagedialog { // Message Dialog styling
}
&.destructive-action:not(:disabled) {
- @include ink-color($error);
+ @include ink-color($error, $activated: true);
}
}
A lot better. Thank you!
Fixed.
So sorry for the late response... and thanks for the report!
@nana-4 you are working a lot on this theme, and we are all very grateful for your work! No need to be sorry!
I just noticed the reorganization of the gnome-shell scss: that's great (and a lot of work)! Thank you!