From 1ba0f332402e3626024ef27807b90aedcfd5cb72 Mon Sep 17 00:00:00 2001 From: Gianluca Zuccarelli Date: Fri, 6 Jun 2025 11:31:51 +0000 Subject: [PATCH] ImageTable: fix blueprint list cards The blueprint cards were missing their borders, making it unclear when the item was selected or not. --- src/AppCockpit.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/AppCockpit.scss b/src/AppCockpit.scss index ae8b9216..90624edf 100644 --- a/src/AppCockpit.scss +++ b/src/AppCockpit.scss @@ -68,3 +68,11 @@ .pf-v6-c-page__main > section.pf-v6-c-page__main-section:not(.pf-m-padding) { padding-inline: 0; } + +.pf-v6-c-card { + &.pf-m-clickable::before, + &.pf-m-selectable::before { + border: var(--pf-v6-c-card--BorderColor) var(--pf-v6-c-card--BorderStyle) + var(--pf-v6-c-card--BorderWidth) !important; + } +}