mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
fixed leftnav scrollbar for chrome and safari when hovered (#10766)
This commit is contained in:
parent
3f961cf67e
commit
1e34bd94ce
1 changed files with 15 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue