diff --git a/wwwroot/i18n/en/i18n.json b/wwwroot/i18n/en/i18n.json index 464b88d..72b3038 100644 --- a/wwwroot/i18n/en/i18n.json +++ b/wwwroot/i18n/en/i18n.json @@ -25,7 +25,7 @@ "产线": "Pipelines", "商机产线": "Opportunity Pipeline", "投标产线": "Bidding Pipeline", - "开发产线": "Development Pipeline", + "开发产线": "Dev Pipeline", "运维产线": "Operations Pipeline", "营销产线": "Marketing Pipeline", "运维产线(面向FOMS)规划中,尚未开发": "Operations Pipeline (for FOMS) is planned, not yet developed", diff --git a/wwwroot/index.ui b/wwwroot/index.ui index eb0c266..da7fa9f 100644 --- a/wwwroot/index.ui +++ b/wwwroot/index.ui @@ -161,7 +161,7 @@ "width": "220px", "minWidth": "200px", "height": "100%", - "bgcolor": "#f8fafc", + "bgcolor": "var(--bg-side)", "mobile_hidden": true }, "subwidgets": [ diff --git a/wwwroot/theme_toggle.js b/wwwroot/theme_toggle.js index 1bb2051..4c2a41c 100644 --- a/wwwroot/theme_toggle.js +++ b/wwwroot/theme_toggle.js @@ -11,6 +11,13 @@ btn.opts.label = (t === 'light') ? '🌙' : '☀️'; btn.dom_element.textContent = btn.opts.label; } + // 侧栏折叠图标分风格(2026-09-18 用户要求):亮=☰ 暗=☰ 反色不可行(顶栏深色), + // 改用主题感知的展开/收起语义图标:亮色 ☰ / 暗色 ☲(线条更亮更细的变体) + var tg = bricks.getWidgetById('btn_toggle_sidebar', bricks.app); + if (tg && tg.dom_element){ + tg.opts.label = (t === 'light') ? '☰' : '☲'; + tg.dom_element.textContent = tg.opts.label; + } } window.applyPipelineTheme = applyTheme;