From df49b1915f65a4d4b4de9836f82d6bd5fc214783 Mon Sep 17 00:00:00 2001 From: Lorenzo Stanco Date: Wed, 9 Oct 2019 17:45:09 +0200 Subject: [PATCH 1/2] Fixed serif font when Verdana is not available --- client/viewer.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/viewer.css b/client/viewer.css index e4cb0ea7..f10404d8 100644 --- a/client/viewer.css +++ b/client/viewer.css @@ -1,5 +1,5 @@ :root { - --main-font: normal 11px Verdana; + --main-font: normal 11px Verdana, sans-serif; } :global html, From 84044cd1ff591d929db370f7fce294f34d4230c0 Mon Sep 17 00:00:00 2001 From: Lorenzo Stanco Date: Wed, 9 Oct 2019 17:46:06 +0200 Subject: [PATCH 2/2] Improved readability of translucent tooltips --- client/components/Tooltip.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/Tooltip.css b/client/components/Tooltip.css index 732ad61a..5c72c1b9 100644 --- a/client/components/Tooltip.css +++ b/client/components/Tooltip.css @@ -5,7 +5,7 @@ border-radius: 4px; background: #fff; border: 1px solid #aaa; - opacity: 0.7; + opacity: 0.9; white-space: nowrap; visibility: visible; transition: opacity .2s ease, visibility .2s ease;