From 768defeb8ed0c5c4db30c956c225726a5d0a01db Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Mon, 4 Jan 2021 12:23:29 +0100 Subject: [PATCH] webconfig: Stop proscribing a specific font-family There's a macOS bug with Source Code Pro that makes it unable to be colored. Since that makes webconfig unusable, stop recommending it. Instead, we just pick the default monospace font for the system. --- share/tools/web_config/fishconfig.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/share/tools/web_config/fishconfig.css b/share/tools/web_config/fishconfig.css index 5a988c810..18de70a37 100644 --- a/share/tools/web_config/fishconfig.css +++ b/share/tools/web_config/fishconfig.css @@ -1,7 +1,6 @@ body { background: linear-gradient(to bottom, #a7cfdf 0%, #23538a 100%); - font-family: "Source Code Pro", "DejaVu Sans Mono", Menlo, "Ubuntu Mono", Consolas, Monaco, - "Lucida Console", monospace, fixed; + font-family: monospace, fixed; color: #222; min-height: 100vh; /* at least 1 screen high - to prevent the gradient from running out on a short tab */ width: 90%;