From 733ebff40cd9f6298d58e20dc8d1465e9cb9c9d5 Mon Sep 17 00:00:00 2001 From: David Wheatley Date: Sun, 21 Nov 2021 20:25:00 +0000 Subject: [PATCH] fix(a11y): show post action items when focus is within the post (#3173) * fix: show post action items when focus is within the post * fix: add missing `&` --- framework/core/less/forum/Post.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/less/forum/Post.less b/framework/core/less/forum/Post.less index 31a53cbb0..6fe81e884 100644 --- a/framework/core/less/forum/Post.less +++ b/framework/core/less/forum/Post.less @@ -322,7 +322,7 @@ vertical-align: top; } } - .Post:hover &, &.open { + .Post:hover &, .Post:focus-within &, &.open { opacity: 1; } }