From acac58abbad5e1046e62a65f41752f66552fe22d Mon Sep 17 00:00:00 2001 From: Florian Dieminger Date: Thu, 18 Jan 2024 12:57:06 +0100 Subject: [PATCH] fix(ai-help): history outline on focus-visible The mask-image was hiding the outline. Let's use ellipsis instead when focus-visible. --- client/src/plus/ai-help/history.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/plus/ai-help/history.scss b/client/src/plus/ai-help/history.scss index 3118f2b4f6a3..3fdbcad80792 100644 --- a/client/src/plus/ai-help/history.scss +++ b/client/src/plus/ai-help/history.scss @@ -106,6 +106,11 @@ overflow: hidden; white-space: nowrap; width: 100%; + + &:focus-visible { + mask-image: initial; + text-overflow: ellipsis; + } } &.ai-help-history-active {