Files
certd/packages/ui/certd-client/src/style/scroll.less
T

28 lines
560 B
Plaintext
Raw Normal View History

2023-01-29 13:44:19 +08:00
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
width: 8px;
2025-06-29 14:09:09 +08:00
background: rgba(#101f1c, 0.1);
2023-01-29 13:44:19 +08:00
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
::-webkit-scrollbar-thumb {
2025-06-29 14:09:09 +08:00
// background-color: rgba(#101F1C, 0.5);
2023-01-29 13:44:19 +08:00
background-clip: padding-box;
min-height: 28px;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
background-color: #b3b3b3;
box-shadow: 0px 1px 1px #eee inset;
}
::-webkit-scrollbar-thumb:hover {
//background-color: rgba(#101F1C, 1);
}