diff options
author | raveit65 <[email protected]> | 2016-10-19 13:20:16 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-10-19 13:21:09 +0200 |
commit | 9a68e766b3d516c1cf37fc2e02a5e3761ccb430a (patch) | |
tree | ceeec35333f13a6edac82b5b54dc2e42dc9fd73e /desktop-themes/Blue-Submarine | |
parent | 0ce47313de7fffd5deb6eecb41f116ba0f522286 (diff) | |
download | mate-themes-9a68e766b3d516c1cf37fc2e02a5e3761ccb430a.tar.bz2 mate-themes-9a68e766b3d516c1cf37fc2e02a5e3761ccb430a.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/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css index 1a468862..850ac98f 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -156,6 +156,11 @@ GtkWindow { color: @theme_selected_fg_color;
}
+/* Fix for applications that have issues finding a default monospace font */
+.monospace {
+ font-family: Monospace;
+}
+
/*********
* label *
*********/
|