customize left scroll bar

This commit is contained in:
JFH
2021-08-19 11:36:49 +02:00
parent 193644fd08
commit c1d72960b7

View File

@@ -330,8 +330,26 @@ hr {
grid-area: left;
border-right: none;
overflow-y: scroll;
/* Works on Firefox */
scrollbar-width: 3px;
scrollbar-color: rgb(70, 70, 70) auto;
}
/* Scrollbar styling on Chrome, Edge, and Safari */
#tools_left::-webkit-scrollbar {
width: 3px;
}
#tools_left::-webkit-scrollbar-track {
background: transparent;
}
#tools_left::-webkit-scrollbar-thumb {
background-color:rgb(70, 70, 70);
}
/* End scrollbar styling */
/*—————————————————————————————*/
#workarea.wireframe #svgcontent * {