no message

Former-commit-id: af527fe7b8b689f3564c6e07f16af6250709e895
Former-commit-id: b4770d337e13dbeaf9215e09293b7006df693e67
Former-commit-id: dab7359d32619f32d48aadd091a555ffbf8511dc
This commit is contained in:
liyang
2018-06-11 22:26:29 +08:00
parent 52b952cc82
commit 7e0c1182a3
4 changed files with 17 additions and 11 deletions

View File

@@ -30,22 +30,23 @@
// [组件] d2-container-full
.d2-container-full {
border: $theme-container-border;
border: $theme-container-border-outer;
border-bottom: none;
.d2-container-full__header {
border-bottom: $theme-container-border;
border-bottom: $theme-container-border-inner;
}
.d2-container-full__footer {
border-top: $theme-container-border;
border-top: $theme-container-border-inner;
}
}
// [组件] d2-container-card
.d2-container-card {
border: $theme-container-border;
border: $theme-container-border-outer;
.el-card__header {
border-bottom: $theme-container-border;
border-bottom: $theme-container-border-inner;
}
}
// 顶栏
.el-header {
// 切换按钮

View File

@@ -5,7 +5,8 @@ $theme-bg-color: $color-bg;
// 主题背景图片
// $theme-bg-image: '/static/image/bg/xxx.jpg';
// container组件的边框
$theme-container-border: 1px solid $color-border-1;
$theme-container-border-inner: 1px solid $color-border-1;
$theme-container-border-outer: 1px solid $color-border-1;
// 顶栏和侧边栏中展开的菜单 hover 状态下
$theme-menu-item-color-hover: #293849;

View File

@@ -30,20 +30,23 @@
// [组件] d2-container-full
.d2-container-full {
border: $theme-container-border-outer;
border-bottom: none;
.d2-container-full__header {
border-bottom: $theme-container-border;
border-bottom: $theme-container-border-inner;
}
.d2-container-full__footer {
border-top: $theme-container-border;
border-top: $theme-container-border-inner;
}
}
// [组件] d2-container-card
.d2-container-card {
border: $theme-container-border;
border: $theme-container-border-outer;
.el-card__header {
border-bottom: $theme-container-border;
border-bottom: $theme-container-border-inner;
}
}
// 顶栏
.el-header {
// 切换按钮

View File

@@ -5,7 +5,8 @@ $theme-bg-color: #EFF4F8;
// 主题背景图片
$theme-bg-image: '/static/image/bg/star.jpg';
// container组件的边框
$theme-container-border: 1px solid #d8dfea;
$theme-container-border-inner: 1px solid #d8dfea;
$theme-container-border-outer: 1px solid #d8dfea;
// 顶栏和侧边栏中展开的菜单 hover 状态下
$theme-menu-item-color-hover: #293849;