fixed leftnav scrollbar for chrome and safari when hovered (#10766)

This commit is contained in:
Nikhil Bhatia 2024-12-12 12:33:09 +05:30 committed by GitHub
parent 3f961cf67e
commit 1e34bd94ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4527,7 +4527,21 @@ input[type="text"] {
* Folder List
*/
.folder-list {
overflow-y: auto;
overflow-y: scroll;
scrollbar-width: thin;
scrollbar-color: #888 transparent;
&:hover {
&::-webkit-scrollbar {
display: block;
width: 5px;
}
&::-webkit-scrollbar-thumb {
background-color: #888;
}
&::-webkit-scrollbar-track {
background-color: transparent;
}
}
.list-group-transparent .list-group-item.active {
color: $primary;