diff options
author | raveit65 <[email protected]> | 2016-10-19 13:02:38 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-10-19 13:02:38 +0200 |
commit | 4373582b7cf1a3f326784cc058ef48193286f304 (patch) | |
tree | 8b64886fce3b02094a38097d3d01593065d6d6ac /desktop-themes/Blue-Submarine | |
parent | 362d9b55d64090336d493516f71be996b8fe6467 (diff) | |
download | mate-themes-4373582b7cf1a3f326784cc058ef48193286f304.tar.bz2 mate-themes-4373582b7cf1a3f326784cc058ef48193286f304.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 ff740ec1..24787c64 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -106,6 +106,11 @@ window { color: @theme_selected_fg_color;
}
+/* Fix for applications that have issues finding a default monospace font */
+.monospace {
+ font-family: Monospace;
+}
+
/*********
* label *
*********/
|