From 42c2f78baf270299fa3c4e9e9a33d4d1797e14af Mon Sep 17 00:00:00 2001 From: Michaela <85624192+mkrbr@users.noreply.github.com> Date: Tue, 27 Jan 2026 13:34:05 +0100 Subject: [PATCH] Fixes icon button color in array item (#11588) Removes specific styling for the icon button in array items to inherit the correct color. This ensures the button's icon color aligns with the theme. Fixes AAE-41713 --- .../card-view-arrayitem.component.html | 19 ++++++++++--------- .../card-view-arrayitem.component.scss | 9 --------- 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.html b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.html index e40946327b..40fbb2cac9 100644 --- a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.html +++ b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.html @@ -53,13 +53,14 @@ {{ property?.default | translate }} - + @if (showClickableIcon) { + + } diff --git a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.scss b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.scss index 30180e52ad..ed1a673c5e 100644 --- a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.scss +++ b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.scss @@ -5,15 +5,6 @@ margin-right: 5px; } - &-array-item-action { - color: var(--adf-theme-foreground-text-color-025); - } - - &-array-item-action:hover, - &-array-item-action:focus { - color: var(--adf-theme-foreground-text-color); - } - &-card-array-item-default { overflow: hidden; text-overflow: ellipsis;