diff options
author | raveit65 <[email protected]> | 2016-10-19 13:20:16 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-10-19 13:20:16 +0200 |
commit | 6a51fec43a33cf4a57ca69920fcf820c4fad83bf (patch) | |
tree | e574dc84522cb041ed22b48ae7cce200613d1aa9 /desktop-themes/Green-Submarine | |
parent | 49d107c14045def49b1e0e40aa3743299e991c82 (diff) | |
download | mate-themes-6a51fec43a33cf4a57ca69920fcf820c4fad83bf.tar.bz2 mate-themes-6a51fec43a33cf4a57ca69920fcf820c4fad83bf.tar.xz |
Most themes: Specify a monospace font family
Fix for github.com/mate-desktop/mate-themes/issues/145
in which gitg, possibly other apps can't find system monospace font.
Diffstat (limited to 'desktop-themes/Green-Submarine')
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css index c2b9dbce..66997a12 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -154,6 +154,11 @@ GtkWindow { color: @theme_selected_fg_color;
}
+/* Fix for applications that have issues finding a default monospace font */
+.monospace {
+ font-family: Monospace;
+}
+
/*********
* label *
*********/
|