mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-07 14:39:25 +08:00
36 lines
786 B
Plaintext
36 lines
786 B
Plaintext
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: var(--colorBgScrollTrack);
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--colorBgScrollBar);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--colorBgScrollBarHover);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
background: var(--colorBgScrollBarActive);
|
|
}
|
|
|
|
.rc-virtual-list-scrollbar-thumb {
|
|
background: var(--colorBgScrollBar) !important;
|
|
}
|
|
.rc-virtual-list-scrollbar-thumb:hover {
|
|
background: var(--colorBgScrollBarHover) !important;
|
|
}
|
|
.rc-virtual-list-scrollbar-thumb:active {
|
|
background: var(--colorBgScrollBarActive) !important;
|
|
}
|