123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563 |
- @mixin merge-style(
- // 菜单选中后字体样式
- $subMenuActiveText,
- //菜单背景
- $menuBg,
- // 鼠标覆盖菜单时的背景
- $menuHover,
- // 子菜单背景
- $subMenuBg,
- // 鼠标覆盖子菜单时的背景
- $subMenuHover,
- // vertical模式下主体内容距离网页文档左侧的距离
- $sideBarWidth,
- $navTextColor
- ) {
- $menuText: #7a80b4;
- $menuActiveText: #7a80b4;
- .main-container {
- min-height: 100%;
- transition: margin-left 0.28s;
- margin-left: $sideBarWidth;
- position: relative;
- }
- .el-popper.is-light {
- border: none !important;
- }
- .sidebar-container {
- transition: width 0.28s;
- width: $sideBarWidth;
- background-color: $menuBg;
- height: 100%;
- position: fixed;
- font-size: 0;
- top: 0;
- bottom: 0;
- left: 0;
- z-index: 1001;
- overflow: hidden;
- box-shadow: 0 0 1px #888;
- .scrollbar-wrapper {
- overflow-x: hidden !important;
- }
- .horizontal-collapse-transition {
- transition: 0s width ease-in-out, 0s padding-left ease-in-out,
- 0s padding-right ease-in-out;
- }
- .el-scrollbar__bar.is-vertical {
- right: 0;
- }
- .el-scrollbar {
- height: 100%;
- }
- &.has-logo {
- .el-scrollbar {
- height: calc(100% - 50px);
- }
- }
- .is-horizontal {
- display: none;
- }
- a {
- display: inline-block;
- width: 100%;
- overflow: hidden;
- }
- .el-menu {
- border: none;
- height: 100%;
- background-color: transparent !important;
- }
- .el-menu-item,
- .el-sub-menu__title {
- color: $menuText;
- }
- // menu hover
- .submenu-title-noDropdown,
- .el-sub-menu__title {
- // background: $menuBg;
- &:hover {
- background-color: $menuHover !important;
- }
- }
- .is-active > .el-sub-menu__title,
- .is-active.submenu-title-noDropdown {
- color: $subMenuActiveText !important;
- i {
- color: $subMenuActiveText !important;
- }
- }
- .is-active {
- transition: color 0.3s;
- color: $subMenuActiveText !important;
- }
- .el-menu .el-menu--inline .el-sub-menu__title,
- & .el-sub-menu .el-menu-item {
- font-size: 12px;
- min-width: $sideBarWidth !important;
- background-color: $subMenuBg !important;
- &:hover {
- background-color: $subMenuHover !important;
- }
- }
- }
- .horizontal-header {
- display: flex;
- justify-content: space-around;
- background-color: $menuBg;
- width: 100%;
- height: 62px;
- align-items: center;
- .horizontal-header-left {
- display: flex;
- height: 100%;
- width: auto;
- min-width: 200px;
- align-items: center;
- padding-left: 10px;
- cursor: pointer;
- transition: all 0.2s ease;
- &:hover {
- background: $menuHover;
- }
- i {
- font-size: 30px;
- color: #1890ff;
- margin-right: 4px;
- }
- h4 {
- font-size: 16px;
- font-weight: 700;
- color: $navTextColor;
- transition: all 0.5s;
- }
- }
- .horizontal-header-menu {
- height: 100%;
- min-width: 0;
- flex: 1;
- align-items: center;
- }
- .horizontal-header-right {
- display: flex;
- min-width: 280px;
- align-items: center;
- color: $navTextColor;
- justify-content: flex-end;
- .screen-full {
- cursor: pointer;
- &:hover {
- background: $menuHover;
- }
- }
- .iconinternationality {
- height: 62px;
- width: 40px;
- padding: 11px;
- cursor: pointer;
- color: $navTextColor;
- &:hover {
- background: $menuHover;
- }
- }
- .el-dropdown-link {
- width: 100px;
- height: 62px;
- padding: 10px;
- display: flex;
- align-items: center;
- justify-content: space-around;
- cursor: pointer;
- color: $navTextColor;
- &:hover {
- background: $menuHover;
- }
- p {
- font-size: 14px;
- }
- img {
- width: 22px;
- height: 22px;
- border-radius: 50%;
- }
- }
- .el-icon-setting {
- height: 62px;
- width: 40px;
- padding: 11px;
- display: flex;
- cursor: pointer;
- align-items: center;
- &:hover {
- background: $menuHover;
- }
- }
- }
- .el-menu {
- border: none;
- height: 100%;
- background-color: transparent;
- width: 100% !important;
- }
- .el-menu-item,
- .el-sub-menu__title {
- color: $menuText;
- }
- .submenu-title-noDropdown,
- .el-sub-menu__title {
- height: 60px;
- background: $menuBg;
- &:hover {
- background-color: $menuHover !important;
- }
- }
- .is-active > .el-sub-menu__title,
- .is-active.submenu-title-noDropdown {
- color: $subMenuActiveText !important;
- border-bottom-color: #409eff;
- i {
- color: $subMenuActiveText !important;
- }
- }
- .is-active {
- transition: color 0.3s;
- color: $subMenuActiveText !important;
- border-bottom-color: #409eff;
- }
- }
- // vertical菜单折叠
- .el-menu--vertical {
- .el-menu--popup {
- background-color: $subMenuBg !important;
- .el-menu-item {
- color: $menuText;
- background-color: $subMenuBg;
- &:hover {
- background-color: $subMenuHover;
- }
- }
- .el-sub-menu__title {
- color: $menuText;
- }
- }
- & > .el-menu {
- i {
- margin-right: 16px;
- }
- }
- .is-active > .el-sub-menu__title,
- .is-active.submenu-title-noDropdown {
- color: $subMenuActiveText !important;
- i {
- color: $subMenuActiveText !important;
- }
- }
- // 子菜单中还有子菜单
- .el-menu .el-sub-menu__title {
- font-size: 12px;
- min-width: $sideBarWidth !important;
- background-color: $subMenuBg !important;
- &:hover {
- background-color: $menuHover !important;
- }
- }
- .is-active {
- transition: color 0.3s;
- color: $subMenuActiveText !important;
- }
- .nest-menu .el-sub-menu > .el-sub-menu__title,
- .el-menu-item {
- &:hover {
- background-color: $menuHover !important;
- }
- }
- }
- // horizontal菜单折叠
- .el-menu--horizontal {
- .el-menu--popup {
- background-color: $subMenuBg !important;
- .el-menu-item {
- color: $menuText;
- background-color: $subMenuBg;
- &:hover {
- background-color: $subMenuHover;
- }
- }
- .el-sub-menu__title {
- color: $menuText;
- }
- }
- // 无子菜单时激活border-bottom
- .router-link-exact-active > .submenu-title-noDropdown {
- height: 60px;
- border-bottom: 2px solid var(--el-menu-active-color);
- }
- // 子菜单中还有子菜单
- .el-menu .el-sub-menu__title {
- font-size: 12px;
- min-width: $sideBarWidth !important;
- background-color: $subMenuBg !important;
- &:hover {
- background-color: $menuHover !important;
- }
- }
- & > .el-menu {
- i {
- margin-right: 16px;
- }
- }
- .is-active > .el-sub-menu__title,
- .is-active.submenu-title-noDropdown {
- color: $subMenuActiveText !important;
- i {
- color: $subMenuActiveText !important;
- }
- }
- .is-active {
- transition: color 0.3s;
- color: $subMenuActiveText !important;
- }
- .nest-menu .el-sub-menu > .el-sub-menu__title,
- .el-menu-item {
- &:hover {
- background-color: $menuHover !important;
- }
- }
- }
- .el-scrollbar__wrap {
- overflow: auto;
- height: 100%;
- }
- .el-menu--collapse .el-menu .el-sub-menu {
- min-width: $sideBarWidth !important;
- }
- // 手机端
- .mobile {
- .main-container {
- margin-left: 0 !important;
- }
- .sidebar-container {
- transition: transform 0.28s;
- width: $sideBarWidth !important;
- }
- &.hideSidebar {
- .sidebar-container {
- pointer-events: none;
- transition-duration: 0.3s;
- transform: translate3d(-$sideBarWidth, 0, 0);
- }
- }
- }
- .withoutAnimation {
- .main-container,
- .sidebar-container {
- transition: none;
- }
- }
- }
- body[data-layout="vertical"] {
- .hideSidebar {
- .fixed-header {
- width: calc(100% - 54px);
- }
- .sidebar-container {
- width: 54px !important;
- }
- .main-container {
- margin-left: 54px !important;
- }
- .submenu-title-noDropdown {
- padding: 0 !important;
- position: relative;
- .el-tooltip {
- padding: 0 !important;
- }
- }
- .el-sub-menu {
- overflow: hidden;
- & > .el-sub-menu__title {
- .el-sub-menu__icon-arrow {
- display: none;
- }
- }
- }
- .el-menu--collapse {
- margin-left: -5px; //需优化的地方
- .el-sub-menu {
- & > .el-sub-menu__title {
- & > span {
- height: 0;
- width: 0;
- overflow: hidden;
- visibility: hidden;
- display: inline-block;
- }
- }
- }
- }
- }
- }
- // vertical模式下暗色主题
- body[data-layout="vertical"][data-theme="dark"] {
- $subMenuActiveText: #f4f4f5;
- $menuBg: #1b2a47;
- $menuHover: #2a395b;
- $subMenuBg: #1f2d3d;
- $subMenuHover: #001528;
- $sideBarWidth: 210px;
- $navTextColor: #fff;
- @include merge-style(
- $subMenuActiveText,
- $menuBg,
- $menuHover,
- $subMenuBg,
- $subMenuHover,
- $sideBarWidth,
- $navTextColor
- );
- }
- // vertical模式下亮色主题
- body[data-layout="vertical"][data-theme="light"] {
- $subMenuActiveText: #409eff;
- $menuBg: #fff;
- $menuHover: #e0ebf6;
- $subMenuBg: #fff;
- $subMenuHover: #e0ebf6;
- $sideBarWidth: 210px;
- $navTextColor: #7a80b4;
- @include merge-style(
- $subMenuActiveText,
- $menuBg,
- $menuHover,
- $subMenuBg,
- $subMenuHover,
- $sideBarWidth,
- $navTextColor
- );
- }
- // horizontal模式下暗色主题
- body[data-layout="horizontal"][data-theme="dark"] {
- $subMenuActiveText: #f4f4f5;
- $menuBg: #1b2a47;
- $menuHover: #2a395b;
- $subMenuBg: #1f2d3d;
- $subMenuHover: #001528;
- $sideBarWidth: 0;
- $navTextColor: #fff;
- @include merge-style(
- $subMenuActiveText,
- $menuBg,
- $menuHover,
- $subMenuBg,
- $subMenuHover,
- $sideBarWidth,
- $navTextColor
- );
- }
- // horizontal模式下亮色主题
- body[data-layout="horizontal"][data-theme="light"] {
- $subMenuActiveText: #409eff;
- $menuBg: #fff;
- $menuHover: #e0ebf6;
- $subMenuBg: #fff;
- $subMenuHover: #e0ebf6;
- $sideBarWidth: 0;
- $navTextColor: #7a80b4;
- @include merge-style(
- $subMenuActiveText,
- $menuBg,
- $menuHover,
- $subMenuBg,
- $subMenuHover,
- $sideBarWidth,
- $navTextColor
- );
- }
|