fix(fusion_plating_shopfloor): finish-dialog message readable in dark mode

The "N required input(s) haven't been recorded yet" line still read as
dark/dim in dark mode after the --text-secondary→--bs-secondary-color
swap, because --bs-secondary-color is muted/low-opacity. That line is
primary instruction text, so use the full-contrast var(--bs-body-color)
instead (+ font-weight 500). Reserve --bs-secondary-color for genuinely
secondary text.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsinghpal
2026-06-02 02:11:42 -04:00
parent 4f48bab6e9
commit 0499a1ad2e
2 changed files with 7 additions and 2 deletions

View File

@@ -819,7 +819,12 @@ $_ws-text-hex: #1d1d1f;
}
.o_fp_finish_block_msg {
color: var(--bs-secondary-color, #333);
// Primary instruction line ("N required input(s)…") — use the FULL
// body text colour, not --bs-secondary-color. Secondary is muted/
// low-opacity and read as "still dark" on the dark dialog. body-color
// is high-contrast in both light and dark.
color: var(--bs-body-color, #1d1d1f);
font-weight: 500;
}
.o_fp_finish_block_list {