feat: dashboard定义

This commit is contained in:
chenjinsong
2022-07-06 21:08:12 +08:00
parent 05cc86a3f2
commit ebd9727178
21 changed files with 290 additions and 34 deletions

View File

@@ -1,17 +1,17 @@
/*---滚动条默认显示样式--*/
::-webkit-scrollbar-thumb {
background-color: #ddd;
border-radius: 6px;
border: 1px solid #fff;
background-color: #ececec;
border-radius: 5px;
/*border: 1px solid #fff;*/
}
/*---鼠标点击滚动条显示样式--*/
::-webkit-scrollbar-thumb:hover {
background-color: #c8c8c8;
border-radius: 6px;
background-color: #ddd;
border-radius: 5px;
}
/*---滚动条大小--*/
::-webkit-scrollbar {
width: 14px;
width: 8px;
height: 14px;
}
/*---滚动框背景样式--*/

View File

@@ -49,7 +49,7 @@ $--color-monitor: #98AEC5; //全局停用色灰色
$--chart-single-value-icon-background-color: #E8F6FF;
$--content-right-background-color: #EFF2F5; //右侧背景色
$--content-right-background-color: #fff; //右侧背景色
// 空白背景色
$--background-color-empty: #fffffe;