2018-06-11 09:42:38 +08:00
|
|
|
@import '../theme.scss';
|
2018-06-11 13:29:06 +08:00
|
|
|
@import './setting.scss';
|
2018-06-11 09:42:38 +08:00
|
|
|
|
|
|
|
|
.theme-#{$theme-name} {
|
2018-06-11 11:04:57 +08:00
|
|
|
|
|
|
|
|
.layout-main {
|
2018-06-11 09:42:38 +08:00
|
|
|
background-color: $theme-bg-color;
|
2018-06-11 13:30:20 +08:00
|
|
|
// background-image: url($theme-bg-image);
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
// 菜单项目
|
|
|
|
|
@mixin theme-menu-hover-style {
|
2018-06-11 11:04:57 +08:00
|
|
|
color: $theme-menu-item-color-hover;
|
|
|
|
|
i {
|
|
|
|
|
color: $theme-menu-item-color-hover;
|
|
|
|
|
}
|
|
|
|
|
background-color: $theme-menu-item-background-color-hover;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
.el-submenu__title:hover {
|
|
|
|
|
@include theme-menu-hover-style;
|
|
|
|
|
}
|
|
|
|
|
.el-menu-item:hover {
|
|
|
|
|
@include theme-menu-hover-style;
|
|
|
|
|
}
|
|
|
|
|
.el-menu--horizontal .el-menu-item:not(.is-disabled):hover {
|
|
|
|
|
@include theme-menu-hover-style;
|
|
|
|
|
}
|
|
|
|
|
.el-menu--horizontal .el-menu .el-submenu__title:hover {
|
|
|
|
|
@include theme-menu-hover-style;
|
|
|
|
|
}
|
2018-06-11 11:04:57 +08:00
|
|
|
|
2018-06-11 09:42:38 +08:00
|
|
|
// [组件] d2-container-full
|
|
|
|
|
.d2-container-full {
|
2018-06-11 13:29:06 +08:00
|
|
|
border: $theme-container-border;
|
|
|
|
|
border-bottom: none;
|
2018-06-11 09:42:38 +08:00
|
|
|
.d2-container-full__header {
|
2018-06-11 11:04:57 +08:00
|
|
|
border-bottom: $theme-container-border;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
.d2-container-full__footer {
|
2018-06-11 11:04:57 +08:00
|
|
|
border-top: $theme-container-border;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
}
|
2018-06-11 11:04:57 +08:00
|
|
|
// [组件] d2-container-card
|
|
|
|
|
.d2-container-card {
|
|
|
|
|
border: $theme-container-border;
|
2018-06-11 14:26:45 +08:00
|
|
|
.el-card__header {
|
|
|
|
|
border-bottom: $theme-container-border;
|
|
|
|
|
}
|
2018-06-11 11:04:57 +08:00
|
|
|
}
|
2018-06-11 09:42:38 +08:00
|
|
|
// 顶栏
|
|
|
|
|
.el-header {
|
|
|
|
|
// 切换按钮
|
|
|
|
|
.toggle-aside-btn {
|
|
|
|
|
i {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color;
|
|
|
|
|
background-color: $theme-header-item-background-color;
|
2018-06-11 09:42:38 +08:00
|
|
|
&:hover {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color-hover;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 顶栏菜单
|
|
|
|
|
.el-menu {
|
|
|
|
|
.el-menu-item {
|
|
|
|
|
transition: border-top-color 0s;
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color;
|
|
|
|
|
background-color: $theme-header-item-background-color;
|
2018-06-11 09:42:38 +08:00
|
|
|
&:hover {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color-hover;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-header-item-background-color-hover;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
&:focus {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color-focus;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-header-item-background-color-focus;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
&.is-active {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color-active;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-header-item-background-color-active;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.el-submenu {
|
|
|
|
|
.el-submenu__title {
|
|
|
|
|
transition: border-top-color 0s;
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color;
|
|
|
|
|
background-color: $theme-header-item-background-color;
|
2018-06-11 11:04:57 +08:00
|
|
|
.el-submenu__icon-arrow {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color;
|
2018-06-11 11:04:57 +08:00
|
|
|
}
|
2018-06-11 09:42:38 +08:00
|
|
|
&:hover {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color-hover;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-header-item-background-color-hover;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
&:focus {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color-focus;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-header-item-background-color-focus;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 顶栏右侧
|
|
|
|
|
.d2-header-right {
|
|
|
|
|
.btn-text {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color;
|
2018-06-11 11:04:57 +08:00
|
|
|
&.can-hover {
|
|
|
|
|
&:hover {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-header-item-color-hover;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-header-item-background-color-hover;
|
|
|
|
|
}
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// [布局] 顶栏下面
|
|
|
|
|
.el-container {
|
|
|
|
|
// 侧边栏
|
|
|
|
|
.el-aside {
|
|
|
|
|
// [菜单] 正常状态
|
|
|
|
|
.el-menu {
|
|
|
|
|
.el-menu-item {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color;
|
|
|
|
|
background-color: $theme-aside-item-background-color;
|
2018-06-11 11:04:57 +08:00
|
|
|
i {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color;
|
2018-06-11 11:04:57 +08:00
|
|
|
}
|
2018-06-11 09:42:38 +08:00
|
|
|
&:hover {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color-hover;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-aside-item-background-color-hover;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
&:focus {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color-focus;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-aside-item-background-color-focus;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
&.is-active {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color-active;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-aside-item-background-color-active;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.el-submenu {
|
|
|
|
|
.el-submenu__title {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color;
|
|
|
|
|
background-color: $theme-aside-item-background-color;
|
2018-06-11 09:42:38 +08:00
|
|
|
i {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
.el-submenu__icon-arrow {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color;
|
2018-06-11 11:04:57 +08:00
|
|
|
}
|
|
|
|
|
&:hover {
|
2018-06-11 13:29:06 +08:00
|
|
|
color: $theme-aside-item-color-hover;
|
2018-06-11 11:04:57 +08:00
|
|
|
background-color: $theme-aside-item-background-color-hover;
|
2018-06-11 09:42:38 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|