Merge pull request #13575 from dataease/pr@dev-v2_st

feat: 系统内的滚动条宽度用全局变量统一控制
This commit is contained in:
xuwei-fit2cloud 2024-11-26 18:08:03 +08:00 committed by GitHub
commit 8a81a0fb09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -616,5 +616,28 @@ strong {
}
.canvas_keep-size {
overflow-x: auto!important;
overflow-x: auto !important;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background: #1f23294d;
}
::-webkit-scrollbar {
width: 8px !important;
height: 8px !important;
}
.ed-scrollbar__thumb {
background: #1f23294d !important;
opacity: 1 !important;
}
.ed-scrollbar__bar.is-vertical {
width: 8px !important;
}
.ed-scrollbar__bar.is-horizontal {
height: 8px !important;
}