From 82591e2a858bc9323d66e82f9d09bddf3853284f Mon Sep 17 00:00:00 2001 From: Kenneth Okoh Date: Thu, 13 Feb 2025 14:04:17 +0100 Subject: [PATCH] Inventory tables: fix missing SCSS variables SUP-21631 Change-Id: I835c66d1d1b3401ac19c82aa9f03cddd84c1924c --- web/htdocs/themes/facelift/scss/_variables.scss | 5 +++-- web/htdocs/themes/facelift/scss/_views.scss | 2 +- web/htdocs/themes/modern-dark/scss/_variables.scss | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/web/htdocs/themes/facelift/scss/_variables.scss b/web/htdocs/themes/facelift/scss/_variables.scss index c536d8ac22a..e8fba34c87f 100644 --- a/web/htdocs/themes/facelift/scss/_variables.scss +++ b/web/htdocs/themes/facelift/scss/_variables.scss @@ -123,8 +123,9 @@ $popup-menu-select-bg-color: $white; $dragging-bg-color: $grey-1; -$nested-table-th-bg-color: $ux-theme-1; -$nested-table-td-bg-color: $ux-theme-0; +$nested-table-th-bg-color: $ux-theme-4; +$nested-table-td-bg-color: $white; +$nested-table-td-inactive-bg-color: $ux-theme-0; $duallist-control-a-hover-bg-color: $grey-1; diff --git a/web/htdocs/themes/facelift/scss/_views.scss b/web/htdocs/themes/facelift/scss/_views.scss index cc53ec3d75e..6625dbcf359 100644 --- a/web/htdocs/themes/facelift/scss/_views.scss +++ b/web/htdocs/themes/facelift/scss/_views.scss @@ -1225,6 +1225,6 @@ td.agent_config table.rulesets td { } } -.muted_text { +span.muted_text { color: $font-color-dimmed; } diff --git a/web/htdocs/themes/modern-dark/scss/_variables.scss b/web/htdocs/themes/modern-dark/scss/_variables.scss index 21c92a999ea..bb665f3064b 100644 --- a/web/htdocs/themes/modern-dark/scss/_variables.scss +++ b/web/htdocs/themes/modern-dark/scss/_variables.scss @@ -125,6 +125,7 @@ $dragging-bg-color: $ux-theme-1; $nested-table-th-bg-color: $ux-theme-4; $nested-table-td-bg-color: $ux-theme-5; +$nested-table-td-inactive-bg-color: $nested-table-td-bg-color; $duallist-control-a-hover-bg-color: mix($white, $grey-5, 10%); @@ -207,4 +208,4 @@ $dashlet-figures-grid-color: rgb(128, 151, 177); $scatterplot-hilite-color: rgb(70, 130, 180); $gauge-span-color: $ux-theme-5; $gauge-single-value-color: $font-color; -$inactive-opacity: 0.5; +$inactive-opacity: 0.6;