From b4a9fec1e422acb40c6d2fb6b82d4f9ba72182ac Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Fri, 19 Aug 2022 19:16:38 -0700 Subject: [PATCH] remove border if canvas is in focus --- web/css/app.less | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/css/app.less b/web/css/app.less index 6905e9ee..e3dd3190 100644 --- a/web/css/app.less +++ b/web/css/app.less @@ -23,6 +23,7 @@ html, body { font-size: 16px; padding: 8px 0 0 10px; cursor: alias; + white-space: nowrap; } .logo sup { @@ -298,6 +299,12 @@ html, body { pointer-events: none; } +#viewer-container{ + canvas:focus-visible, canvas:focus, canvas:focus-within { + outline-width: 0; + } +} + #top-toolbar:empty { height: 40px; }