From 182278ee53cba7a398b619887b249464dc04e37a Mon Sep 17 00:00:00 2001 From: James Mahoney <46289457+paddle-to-the-sea@users.noreply.github.com> Date: Mon, 1 Jan 2024 12:44:16 -0600 Subject: [PATCH] Fix style.css Change the selector `GtkTextView` to `textview`. Now the user can edit `/usr/local/share/ferret/style.css` and modify the font style that the program displays. These are the references that got me to the right answer: https://docs.gtk.org/gtk3/class.TextView.html and https://stackoverflow.com/questions/41276368/need-to-make-transparent-textview-on-gtk --- share/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/style.css b/share/style.css index 4bfe6ee..6e507fc 100644 --- a/share/style.css +++ b/share/style.css @@ -1 +1 @@ -GtkTextView { font-family: sans; font-size: 10px; } +textview { font-family: sans; font-size: 10px; }