40 lines
714 B
CSS
40 lines
714 B
CSS
/* 亮色 */
|
|
::-webkit-scrollbar {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #c1c1c1;
|
|
border-radius: 10px;
|
|
border: 4px solid #f5f5f5;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #a0a0a0;
|
|
border: 4px solid #f5f5f5;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
/* 暗色 */
|
|
html.dark ::-webkit-scrollbar-track {
|
|
background: #1e1e1e;
|
|
}
|
|
|
|
html.dark ::-webkit-scrollbar-thumb {
|
|
background: #4a4a4a;
|
|
border: 4px solid #1e1e1e;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
html.dark ::-webkit-scrollbar-thumb:hover {
|
|
background: #666666;
|
|
border: 4px solid #1e1e1e;
|
|
background-clip: padding-box;
|
|
}
|