28 lines
425 B
Plaintext
28 lines
425 B
Plaintext
|
.win {
|
||
|
/* width */
|
||
|
::-webkit-scrollbar {
|
||
|
width: 8px;
|
||
|
height: 8px;
|
||
|
}
|
||
|
|
||
|
/* Track */
|
||
|
::-webkit-scrollbar-track {
|
||
|
background: #f1f1f1;
|
||
|
}
|
||
|
|
||
|
/* Handle */
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background: #c0c0c0;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
/* Handle on hover */
|
||
|
::-webkit-scrollbar-thumb:hover {
|
||
|
background: #a8a8a8;
|
||
|
}
|
||
|
|
||
|
.rc-virtual-list-scrollbar-thumb {
|
||
|
background: #c0c0c0 !important;
|
||
|
}
|
||
|
}
|