mirror of
https://gitee.com/lyt-top/vue-next-admin
synced 2026-07-07 06:15:18 +08:00
'admin-21.03.20:修复浏览器离开时菜单高亮bug、工具栏左偏bug、新增步骤条演示界面'
This commit is contained in:
@ -765,7 +765,7 @@
|
||||
color: #ffffff !important;
|
||||
}
|
||||
}
|
||||
.add-is-active {
|
||||
#add-is-active {
|
||||
@extend .el-active-extend;
|
||||
&:hover {
|
||||
@extend .el-active-extend;
|
||||
@ -803,6 +803,10 @@
|
||||
.el-submenu [class^='el-icon-'] {
|
||||
font-size: 14px !important;
|
||||
}
|
||||
// 去掉离开浏览器时,菜单的默认高亮
|
||||
.el-menu-item:focus {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
/* Tabs 标签页
|
||||
------------------------------- */
|
||||
@ -866,6 +870,13 @@
|
||||
.el-step__head.is-error {
|
||||
border-color: set-color(danger);
|
||||
}
|
||||
.el-step__icon-inner {
|
||||
font-size: 30px !important;
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
.el-step__title {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Dialog 对话框
|
||||
------------------------------- */
|
||||
@ -954,3 +965,15 @@
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
.el-drawer-fade-enter-active .el-drawer.rtl {
|
||||
animation: rtl-drawer-animation 0.3s ease-in reverse !important;
|
||||
}
|
||||
.el-drawer-fade-leave-active .el-drawer.rtl {
|
||||
animation: rtl-drawer-animation 0.3s ease !important;
|
||||
}
|
||||
.el-drawer-fade-enter-active .el-drawer.ltr {
|
||||
animation: ltr-drawer-animation 0.3s ease-in reverse !important;
|
||||
}
|
||||
.el-drawer-fade-leave-active .el-drawer.ltr {
|
||||
animation: ltr-drawer-animation 0.3s ease !important;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user