diff options
author | raveit65 <[email protected]> | 2016-10-19 13:02:38 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-10-19 13:03:48 +0200 |
commit | f88ae2e9984c9ac51e530cb62ae89ff55af70c00 (patch) | |
tree | 02041a7cad85e79cc9578b939085eff02b9f993e /desktop-themes/Blue-Submarine/gtk-3.0 | |
parent | 36f9639538743576e739b77247d2a4bf44ad35cb (diff) | |
download | mate-themes-f88ae2e9984c9ac51e530cb62ae89ff55af70c00.tar.bz2 mate-themes-f88ae2e9984c9ac51e530cb62ae89ff55af70c00.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/gtk-3.0')
-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 a2d78959..c8cdfd97 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 *
*********/
|