refactor(styles): 提取布局 mixin,派生主题色,消除硬编码与魔法数字

- 新增 _mixins.scss,统一 app-main / sidebar-scroll 高度计算
- _theme.scss 引入 SCSS 颜色令牌,menu-hover 改用 color-mix() 自动派生
- _variables.scss 新增 $sidebar-toggle-height 替代魔法数字 50px
- LeftLayout / TopLayout / MixLayout 中重复 calc 替换为 mixin 调用
- 修复 apifox / internal-doc demo 页面 tags-view 高度错误(34px→40px)
- 添加主题变量契约注释,方便后续新增主题
This commit is contained in:
Ray.Hao
2026-06-09 14:31:40 +08:00
parent 0a531ae955
commit fe3695d613
8 changed files with 126 additions and 25 deletions

View File

@@ -0,0 +1,68 @@
/**
* 布局 Mixins
*
* 所有布局组件共享的样式抽象,确保单一来源。
*
* ═══════════════════════════════════════════════════════════
* 主题变量契约(添加新主题时必须定义以下 CSS 变量)
* ═══════════════════════════════════════════════════════════
*
* --menu-background 菜单背景色
* --menu-text 菜单文字色
* --menu-active-text 菜单激活文字色(通常复用 --el-menu-active-color
* --menu-hover 菜单悬浮背景色【自动派生——见 _theme.scss 颜色令牌】
* --sidebar-logo-background Logo 区域背景色
* --sidebar-logo-text-color Logo 区域文字色
*
* 自动派生规则:--menu-hover 通过 color-mix() 从 --menu-background 派生,
* 因此新主题只需定义 --menu-backgroundhover 颜色自动生成。
* 如需覆盖自动派生值,显式设置 --menu-hover 即可。
*/
@use "variables" as *;
// ============================================
// 布局计算 Mixins
// ============================================
/**
* 计算主内容区高度(考虑 TagsView 是否存在)
*
* 使用场景:各布局文件中的 .hasTagsView 样式块
*
* @example
* .hasTagsView {
* :deep(.app-main) {
* @include app-main-height-with-tags;
* }
* }
*/
@mixin app-main-height-with-tags {
height: calc(100vh - $navbar-height - $tags-view-height) !important;
}
/**
* 主内容区基础高度(无 TagsView
*
* @example
* .layout__main {
* @include app-main-height;
* }
*/
@mixin app-main-height {
height: calc(100vh - $navbar-height);
}
/**
* 侧边栏滚动区高度(带 Logo 时)
*/
@mixin sidebar-scroll-height-with-logo {
height: calc(100vh - $navbar-height);
}
/**
* 侧边栏滚动区高度(带底部折叠按钮时,如 MixLayout 左侧)
*/
@mixin sidebar-scroll-height-with-toggle {
height: calc(100vh - $navbar-height - $sidebar-toggle-height);
}

View File

@@ -1,17 +1,45 @@
/**
* 主题变量定义
*
* ═══════════════════════════════════════════════════════════
* 主题变量契约
* ═══════════════════════════════════════════════════════════
*
* 新增主题只需定义以下变量,其余自动派生:
*
* 必须定义:
* --menu-background 菜单背景色
* --menu-text 菜单文字色
* --menu-active-text 菜单激活文字色
* --sidebar-logo-background Logo 区域背景色
* --sidebar-logo-text-color Logo 区域文字色
*
* 可选覆盖(有自动派生默认值):
* --menu-hover 菜单悬浮背景色
* → 浅色主题:从 --el-color-primary 与背景混合派生
* → 深色主题:半透明黑色叠加层,自适应动态背景
* → 可显式覆盖以微调
*/
// ============================================
// SCSS 颜色令牌(构建时源)
// ============================================
$menu-bg-light: #fff;
$menu-hover-light: #e6f4ff; // 设计指定色,非纯推导
$menu-bg-classic-blue: #304156;
// ============================================
// 默认主题(浅色 + 白色侧边栏)
// ============================================
:root {
// 菜单
--menu-background: #fff;
--menu-background: #{$menu-bg-light};
--menu-text: #606266;
--menu-active-text: var(--el-menu-active-color);
--menu-hover: #e6f4ff;
--menu-hover: #{$menu-hover-light};
// 侧边栏 Logo
--sidebar-logo-background: #fafafa;
@@ -57,10 +85,11 @@
// ============================================
html.sidebar-color-blue {
--menu-background: #304156;
--menu-background: #{$menu-bg-classic-blue};
--menu-text: #bfcbd9;
--menu-active-text: var(--el-menu-active-color);
--menu-hover: #263445;
// 自动派生:背景色加深 20% → #263445
--menu-hover: color-mix(in srgb, var(--menu-background) 80%, #000 20%);
--sidebar-logo-background: #2d3748;
--sidebar-logo-text-color: #fff;
}
@@ -73,6 +102,7 @@ html.dark {
--menu-background: var(--el-bg-color-overlay);
--menu-text: #fff;
--menu-active-text: var(--el-menu-active-color);
// 半透明叠加层:自适应 Element Plus 动态 overlay 背景色
--menu-hover: rgb(0 0 0 / 20%);
--sidebar-logo-background: rgb(0 0 0 / 20%);
--sidebar-logo-text-color: #fff;

View File

@@ -11,6 +11,7 @@ $sidebar-width: 210px;
$sidebar-width-collapsed: 54px;
$navbar-height: 50px;
$tags-view-height: 40px;
$sidebar-toggle-height: 50px;
// ============================================
// CSS 变量映射(供组件和 SCSS 使用)