no message

Former-commit-id: a91e60f02dbd2cb458a2b0fa3be083437641f3c9
Former-commit-id: f699535a3e6b3ae4a64b88b49e1a50f5e68aaf96
Former-commit-id: d93017d5808aec98007a9af759a709d490a726cc
This commit is contained in:
liyang
2018-06-05 14:10:57 +08:00
parent abbd3b73f8
commit e262354492
3 changed files with 35 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ $theme-container-full-border-color: #d8dfea;
.theme-#{$theme-name} {
background-color: $theme-bg-color;
background-image: url($theme-bg-image);
// [组件] dd-container-full
.dd-container-full {
.dd-container-full__header {

View File

@@ -1,6 +1,21 @@
@import '~@/assets/style/public.scss';
$theme-color: #EFF4F8;
// 下面这部分是要根据主题修改的 但是没有办法加到主题中
@mixin theme-menu-hover-style {
background-color: #eff4f8;
}
.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;
}
// 主题公用
.theme {