Skip to content
Snippets Groups Projects
Commit c055bc9b authored by Matthias Konitzny's avatar Matthias Konitzny :fire:
Browse files

Improved scrollbar appearance. (currently Chrome only :( )

parent b9b6b9dd
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,35 @@ ...@@ -2,6 +2,35 @@
display: flex; display: flex;
} }
.detail-view-info-area::-webkit-scrollbar {
width: 6px;
background-color: #F5F5F5;
}
.detail-view-info-area::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
.detail-view-info-area::-webkit-scrollbar-thumb {
background-color: darkgray;
}
.bottom-container-tab-content::-webkit-scrollbar {
width: 6px;
height: 8px;
background-color: #F5F5F5;
}
.bottom-container-tab-content::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
.bottom-container-tab-content::-webkit-scrollbar-thumb {
background-color: darkgray;
}
.node-label { .node-label {
font-size: 14px; font-size: 14px;
color: white; color: white;
...@@ -144,7 +173,7 @@ ...@@ -144,7 +173,7 @@
.bottom-container-links { .bottom-container-links {
width: 100%; width: 100%;
height: 92px; height: 100px;
display: block; display: block;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment