Scrolling release actors, added custom scroll bars.

This commit is contained in:
DebaucheryLibrarian
2022-11-28 05:45:25 +01:00
parent 732fc98704
commit 00b54b414d
3 changed files with 116 additions and 17 deletions

View File

@@ -24,6 +24,46 @@
text-decoration: none;
}
.nobar {
scrollbar-width: none;
-mis-overflow-style: none;
&::-webkit-scrollbar {
background: transparent;
width: 0px;
height: 0px;
}
}
::-webkit-scrollbar {
width: 14px;
height: 14px;
}
::-webkit-scrollbar-thumb {
background-color: var(--shadow-weak);
border: none;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 3px var(--shadow-hint);
border: solid 1px var(--shadow-hint);
background-color: var(--shadow-touch);
}
.bar-inline::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.bar-inline::-webkit-scrollbar-thumb {
background-color: var(--shadow-hint);
}
.bar-strong::-webkit-scrollbar-thumb {
background-color: var(--primary);
}
:focus {
outline: none;
}