diff options
-rw-r--r-- | src/main-window.vala | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main-window.vala b/src/main-window.vala index 1d33ec1..cc72aef 100644 --- a/src/main-window.vala +++ b/src/main-window.vala @@ -163,7 +163,10 @@ public class MainWindow : Gtk.Window var style = new Gtk.CssProvider (); style.load_from_data ("* {background-color: transparent; %s - }".printf(shadow_style), -1); + } + *.high_contrast {background-color: black; + border-color: white; + }".printf(shadow_style), -1); var context = back_button.get_style_context(); context.add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); |