| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- :global {
- :local(.wrapper) {
- //hardcode
- //滚动条背景
- &::-webkit-scrollbar {
- height: 5px;
- width: 5px;
- }
- // //滚动条前景
- &::-webkit-scrollbar-thumb {
- background-color: var(--dt-line-color3) !important;
- border-radius: 10px;
- }
- &::-webkit-scrollbar-track {
- background-color: transparent;
- // border-radius: 5px;
- }
- // firefox
- scrollbar-color: rgba(144, 147, 153, 0.3) transparent;
- scrollbar-width: thin;
- }
- :local(.inner) {
- .ant-table-body,
- .ant-table-tbody,
- .ant-table-content,
- .scroll_bar_restyle {
- //hardcode
- //滚动条背景
- &::-webkit-scrollbar {
- height: 5px;
- width: 5px;
- // border-radius: 5px;
- }
- // //滚动条前景
- &::-webkit-scrollbar-thumb {
- background-color: var(--dt-line-color2);
- border-radius: 10px;
- }
- &::-webkit-scrollbar-track {
- background-color: transparent;
- // border-radius: 5px;
- }
- // firefox
- scrollbar-color: rgba(144, 147, 153, 0.3) transparent;
- scrollbar-width: thin;
- }
- }
- }
|