Compare commits

...

3 Commits

Author SHA1 Message Date
Charles Bochet fc7da7719c Revert unnecessary background additions to workflow step containers
The root cause was the broken --t-background-noisy CSS variable, not
missing backgrounds on these containers.
2026-03-04 18:26:48 +01:00
Charles Bochet c1e1ef7f14 Fix background.noisy CSS variable by removing trailing semicolons
The theme's background.noisy values had trailing semicolons (e.g.
`url(...);`) which were fine in styled-components but break when
stored as CSS variable values. The semicolon caused the browser to
reject or misinterpret `--t-background-noisy`, resulting in transparent
backgrounds across PageBody, PageHeader, DefaultLayout, and the
workflow step editor panel.
2026-03-04 18:26:48 +01:00
Charles Bochet 6f3361f9f7 Fix transparent background in workflow step editor panels
The workflow step containers (edit and view-run) were missing background
colors after the Linaria migration, causing the workflow canvas grid to
show through.
2026-03-04 18:26:47 +01:00
4 changed files with 4 additions and 4 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -6,7 +6,7 @@ import { GRAY_SCALE_DARK } from './GrayScaleDark';
import { TRANSPARENT_COLORS_DARK } from './TransparentColorsDark';
export const BACKGROUND_DARK = {
noisy: `url(${DarkNoise.toString()});`,
noisy: `url(${DarkNoise.toString()})`,
primary: GRAY_SCALE_DARK.gray1,
secondary: GRAY_SCALE_DARK.gray2,
tertiary: GRAY_SCALE_DARK.gray4,
@@ -6,7 +6,7 @@ import { GRAY_SCALE_LIGHT } from './GrayScaleLight';
import { TRANSPARENT_COLORS_LIGHT } from './TransparentColorsLight';
export const BACKGROUND_LIGHT = {
noisy: `url(${LightNoise.toString()});`,
noisy: `url(${LightNoise.toString()})`,
primary: GRAY_SCALE_LIGHT.gray1,
secondary: GRAY_SCALE_LIGHT.gray2,
tertiary: GRAY_SCALE_LIGHT.gray4,