Skip to content

Commit

Permalink
Inventory tables: fix missing SCSS variables
Browse files Browse the repository at this point in the history
SUP-21631

Change-Id: I835c66d1d1b3401ac19c82aa9f03cddd84c1924c
  • Loading branch information
oKenneth committed Feb 13, 2025
1 parent 4e58a63 commit 82591e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions web/htdocs/themes/facelift/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion web/htdocs/themes/facelift/scss/_views.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1225,6 +1225,6 @@ td.agent_config table.rulesets td {
}
}

.muted_text {
span.muted_text {
color: $font-color-dimmed;
}
3 changes: 2 additions & 1 deletion web/htdocs/themes/modern-dark/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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%);

Expand Down Expand Up @@ -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;

0 comments on commit 82591e2

Please sign in to comment.