From 1e5f71473a2aa251e79cb345b1aac83fcfd033dc Mon Sep 17 00:00:00 2001 From: chapoi <101828855+chapoi@users.noreply.github.com> Date: Wed, 18 Jun 2025 15:22:31 +0200 Subject: [PATCH] UX: remove default select state for keyboard nav on topic cards (#186) The left-border select state when using keyboard navigation is already overruled in Horizon, but when bulk-select is enabled, this still showed up: ![CleanShot 2025-06-18 at 12 28 16@2x](https://github.com/user-attachments/assets/e1b9bfbc-aceb-429a-8890-fb56f7e12048) Fixed: ![CleanShot 2025-06-18 at 12 29 09@2x](https://github.com/user-attachments/assets/40572de6-a316-4f7b-8786-9040f513b6c8) --- scss/topic-cards.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scss/topic-cards.scss b/scss/topic-cards.scss index 2a5f30f..3a58aee 100644 --- a/scss/topic-cards.scss +++ b/scss/topic-cards.scss @@ -631,6 +631,12 @@ } } +// bulk-select overrule for j/k nav +.topic-list tr.selected td:first-of-type, +.topic-list-item.selected td:first-of-type { + box-shadow: none; +} + // User Messages body.user-messages-page { .topic-list-body {