From 16b347cbcc8f0e559b55bd1c2a3b9321a76622b6 Mon Sep 17 00:00:00 2001 From: Lukas Harbarth Date: Thu, 13 Nov 2025 15:20:36 +0100 Subject: [PATCH 1/7] feat(ObjectStatus): simplify active state styling in lists & tables --- .storybook/preview-head.html | 8 ++ .../components/ObjectStatus/ObjectStatus.mdx | 103 +++++++++++++++++- .../ObjectStatus/ObjectStatus.module.css | 74 +++---------- .../ObjectStatus/ObjectStatus.stories.tsx | 76 +++++++++++++ 4 files changed, 199 insertions(+), 62 deletions(-) diff --git a/.storybook/preview-head.html b/.storybook/preview-head.html index 09b2e63435b..560266ef162 100644 --- a/.storybook/preview-head.html +++ b/.storybook/preview-head.html @@ -181,6 +181,14 @@ min-height: 20px; height: auto; } + + .interactive-table-row:active .object-status, + .interactive-analytical-table [role='row']:active .object-status, + .interactive-li[active] .object-status { + --ui5wcr-object-status-icon-color: var(--sapList_Active_TextColor); + color: var(--sapList_Active_TextColor); + text-shadow: none; + }