From c055bc9b3afb7bc85658d15e1b7f115af7e75379 Mon Sep 17 00:00:00 2001 From: Matthias Konitzny <konitzny@ibr.cs.tu-bs.de> Date: Tue, 3 Aug 2021 12:11:14 +0200 Subject: [PATCH] Improved scrollbar appearance. (currently Chrome only :( ) --- kg-style.css | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/kg-style.css b/kg-style.css index 11bc6f9..189425f 100644 --- a/kg-style.css +++ b/kg-style.css @@ -2,6 +2,35 @@ 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 { font-size: 14px; color: white; @@ -144,7 +173,7 @@ .bottom-container-links { width: 100%; - height: 92px; + height: 100px; display: block; } -- GitLab