style(@vben-core/menu-ui): 调整侧边栏菜单样式

- 菜单字体加粗
- 悬停颜色调整为 #e06c00
- 选中颜色调整为 #b34e00
This commit is contained in:
lzh
2025-12-22 14:57:29 +08:00
parent 43c6273d56
commit 713209d845

View File

@@ -373,8 +373,8 @@ function getActivePaths() {
$namespace: vben;
@mixin menu-item-active {
color: var(--menu-item-active-color);
font-weight: 600; /* 选中时字体加粗 */
color: var(--menu-item-active-color);
text-decoration: none;
cursor: pointer;
background: var(--menu-item-active-background-color);
@@ -769,8 +769,8 @@ $namespace: vben;
}
&:not(.is-active):hover {
color: var(--menu-item-hover-color);
font-weight: 600; /* 悬浮时字体加粗 */
color: var(--menu-item-hover-color);
text-decoration: none;
cursor: pointer;
background: var(--menu-item-hover-background-color) !important;