From 015ea287785dacfa1866e677a49f2edf177e1e8f Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Fri, 5 Feb 2021 14:02:30 -0500 Subject: [PATCH] UX: Small fix for Chrome focus style on replies button (#11996) --- app/assets/stylesheets/desktop/topic-post.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/desktop/topic-post.scss b/app/assets/stylesheets/desktop/topic-post.scss index 7211796d918..dbf432cda9f 100644 --- a/app/assets/stylesheets/desktop/topic-post.scss +++ b/app/assets/stylesheets/desktop/topic-post.scss @@ -202,7 +202,9 @@ nav.post-controls { font-size: inherit; padding: 10px; color: var(--primary-medium); - &:hover { + &:hover, + &:focus { + outline: none; color: var(--primary); background: var(--primary-low); }