This commit is contained in:
bb_pan 2025-12-22 16:04:03 +08:00
parent 1a96ce1e7e
commit 499fb85cb8
3 changed files with 15 additions and 3 deletions

View File

@ -198,3 +198,7 @@ aside {
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.el-table__fixed-right {
z-index: 99;
}

View File

@ -91,6 +91,7 @@
.el-submenu__title { .el-submenu__title {
&:hover { &:hover {
background-color: rgba(0, 0, 0, 0.06) !important; background-color: rgba(0, 0, 0, 0.06) !important;
border: 1px solid $base-menu-color-active !important;
} }
} }
@ -104,13 +105,14 @@
&:hover { &:hover {
background-color: rgba(0, 0, 0, 0.06) !important; background-color: rgba(0, 0, 0, 0.06) !important;
border: 1px solid $base-menu-color-active !important;
} }
} }
& .theme-dark .nest-menu .el-submenu>.el-submenu__title, & .theme-dark .nest-menu .el-submenu>.el-submenu__title,
& .theme-dark .el-submenu .el-menu-item { & .theme-dark .el-submenu .el-menu-item {
// background-color: $base-sub-menu-background !important; // background-color: $base-sub-menu-background !important;
background-color: transparent !important; // background-color: transparent !important;
&:hover { &:hover {
background-color: $base-sub-menu-hover !important; background-color: $base-sub-menu-hover !important;
@ -211,9 +213,12 @@
.nest-menu .el-submenu>.el-submenu__title, .nest-menu .el-submenu>.el-submenu__title,
.el-menu-item { .el-menu-item {
background-color: $base-sub-menu-background !important;
&:hover { &:hover {
// you can use $subMenuHover // you can use $subMenuHover
background-color: rgba(0, 0, 0, 0.06) !important; // background-color: rgba(0, 0, 0, 0.06) !important;
background-color: $base-sub-menu-hover !important;
border: 1px solid $base-menu-color-active !important;
} }
} }

View File

@ -17,7 +17,7 @@
: variables.menuLightColor : variables.menuLightColor
" "
:unique-opened="true" :unique-opened="true"
active-text-color="#ffba00" active-text-color="#fff"
:collapse-transition="false" :collapse-transition="false"
mode="vertical" mode="vertical"
> >
@ -133,4 +133,7 @@ export default {
:deep(.el-submenu__title) { :deep(.el-submenu__title) {
color: inherit !important; color: inherit !important;
} }
::v-deep .el-menu-item.is-active {
background-color: #EA7F31 !important;
}
</style> </style>