mirror of
https://github.com/yang991178/fluent-reader.git
synced 2025-01-29 08:40:08 +01:00
23 lines
644 B
CSS
23 lines
644 B
CSS
::-webkit-scrollbar {
|
|
width: 16px;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
border: 2px solid transparent;
|
|
background-color: #0004;
|
|
background-clip: padding-box;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: #0006;
|
|
}
|
|
::-webkit-scrollbar-thumb:active {
|
|
background-color: #0008;
|
|
}
|
|
body.dark::-webkit-scrollbar-thumb , body.dark *::-webkit-scrollbar-thumb {
|
|
background-color: #fff4;
|
|
}
|
|
body.dark::-webkit-scrollbar-thumb:hover, body.dark *::-webkit-scrollbar-thumb:hover {
|
|
background-color: #fff6;
|
|
}
|
|
body.dark::-webkit-scrollbar-thumb:active, body.dark *::-webkit-scrollbar-thumb:active {
|
|
background-color: #fff8;
|
|
} |