condition-editor
Version:
36 lines (31 loc) • 728 B
text/less
body {
overflow: overlay;
text-rendering: optimizelegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
background-color: transparent;
// height: 10px;
}
::-webkit-scrollbar-thumb {
// height: 50px;
background-color: #b8b8b8;
// border-radius: var(--qif-border-radius);
border-radius: 8px;
background-clip: content-box;
// filter: alpha(opacity=50);
// -moz-opacity: 0.5;
// -khtml-opacity: 0.5;
opacity: 0.5;
}
::-webkit-scrollbar-thumb:hover {
height: 50px;
background-color: #878987;
}
body[scroll]::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.5);
}