This commit is contained in:
熊成强 2020-11-17 15:48:31 +08:00
parent 9e18137be8
commit 088a427770
3 changed files with 27 additions and 7 deletions

View File

@ -64,9 +64,27 @@
}
// ::-webkit-scrollbar {
// width: 0 !important;
// }
// ::-webkit-scrollbar {
// width: 0 !important;height: 0;
// }
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
width: 2px;
height: 2px;
background: #409EFF;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 2px rgba(231, 231, 231, 0.3);
border-radius: 1px;
background-color: #F5F5F5;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
border-radius: 1px;
-webkit-box-shadow: inset 0 0 2px #409EFF;
background: #409EFF;
}

View File

@ -256,6 +256,7 @@ export default {
props: {
value: 'startId',
label: 'time',
expandTrigger: 'hover',
level: true
},
tableData: [],

View File

@ -120,7 +120,8 @@ export default {
//
props: {
value: 'startId',
label: 'time'
label: 'time',
expandTrigger: 'hover'
},
//
option: {