# HG changeset patch # User IBBoard # Date 1521578217 0 # Node ID 123f62e859448289c57dc23d635a9764f0bd81fc # Parent 7a748463e21afe6ec55fe60622e8e75d4abecce1 Fix emoji input category icons Other fonts seem to show up blank diff -r 7a748463e21a -r 123f62e85944 gtk-3.20/gtk.css --- a/gtk-3.20/gtk.css Sat Jan 06 20:22:48 2018 +0000 +++ b/gtk-3.20/gtk.css Tue Mar 20 20:36:57 2018 +0000 @@ -2195,3 +2195,5 @@ notebook > header tab:checked.reorderable-page:hover { background-color: lightgray; } notebook > header tab:backdrop:checked.reorderable-page { background-color: #C6C6C6; } + +.emoji-section label { font-family: "Symbola"; font-weight: bold; font-size: 125%; } diff -r 7a748463e21a -r 123f62e85944 gtk-3.20/gtk.scss --- a/gtk-3.20/gtk.scss Sat Jan 06 20:22:48 2018 +0000 +++ b/gtk-3.20/gtk.scss Tue Mar 20 20:36:57 2018 +0000 @@ -577,6 +577,13 @@ } } +// Fix the category icons in the Emoji input box +.emoji-section label { + font-family: "Symbola"; + font-weight: bold; + font-size: 125% +} + // Import extra Nautilus CSS manually, because they only do this if // you're using Adwaita - // https://github.com/GNOME/nautilus/blob/gnome-3-24/src/nautilus-application.c#L1099-L1112