From 74ffc2a4cdafbe5a550e9f1c38d616ccfa64b636 Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Mon, 5 Oct 2020 22:54:23 +0200 Subject: [PATCH] Have a "default" highlight, but naturally follow focus if focus is in container --- qt/ts/scss/reviewer-bottom.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/qt/ts/scss/reviewer-bottom.scss b/qt/ts/scss/reviewer-bottom.scss index 2d0cbc89a..8d4788f86 100644 --- a/qt/ts/scss/reviewer-bottom.scss +++ b/qt/ts/scss/reviewer-bottom.scss @@ -40,8 +40,12 @@ button { .focus { outline: 5px auto rgba(0, 103, 244, 0.247); - &:focus { - outline-color: rgba(103, 103, 244, 0.247); + #innertable:focus-within & { + outline: unset; + + &:focus { + outline: 5px auto rgba(0, 103, 244, 0.247); + } } }