You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
535 B
40 lines
535 B
![]()
1 year ago
|
@charset "utf-8";
|
||
|
|
||
|
::-webkit-scrollbar
|
||
|
|
||
|
{
|
||
|
|
||
|
width: 8px;
|
||
|
|
||
|
}
|
||
|
|
||
|
/*定义滚动条轨道 内阴影+圆角*/
|
||
|
|
||
|
::-webkit-scrollbar-track {
|
||
|
|
||
|
border-radius: 10px;
|
||
|
|
||
|
background-color: rgba(255, 255, 255, 0.1);
|
||
|
|
||
|
}
|
||
|
|
||
|
/*定义滑块 内阴影+圆角*/
|
||
|
|
||
|
::-webkit-scrollbar-thumb
|
||
|
|
||
|
{
|
||
|
|
||
|
border-radius: 10px;
|
||
|
|
||
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
||
|
|
||
|
background-color: rgba(0, 0, 0, 0.25);
|
||
|
|
||
|
}
|
||
|
|
||
|
.table-detail-drawer .el-drawer__open .el-drawer ::-webkit-scrollbar{
|
||
|
display:block;
|
||
|
}
|
||
|
.table-detail-drawer ::-webkit-scrollbar{
|
||
|
display:none;
|
||
|
}
|