aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorSj-Si <sjw.jetty@gmail.com>2024-01-21 11:27:24 -0500
committerSj-Si <sjw.jetty@gmail.com>2024-01-21 11:27:24 -0500
commitd7d3166a2749fe04f0ba1d8d0f88c8e8819a379d (patch)
tree340656aa7533318c91ca89153c243203538b92d9 /style.css
parentb67a49441fc420f37c6bef1172a0b1ad5c42f30f (diff)
Fix broken scrollbars
Diffstat (limited to 'style.css')
-rw-r--r--style.css20
1 files changed, 7 insertions, 13 deletions
diff --git a/style.css b/style.css
index f3fd1571..ff1d9072 100644
--- a/style.css
+++ b/style.css
@@ -1179,20 +1179,20 @@ body.resizing .resize-handle {
resize: vertical;
min-height: 52rem;
flex-direction: column;
+ overflow: hidden;
}
.extra-network-pane .extra-network-pane-content {
display: flex;
flex: 1;
- flex-direction: row;
+ overflow: hidden;
}
.extra-network-pane .extra-network-tree {
flex: 1;
- flex-direction: column;
- display: flex;
font-size: 1rem;
border: 1px solid var(--block-border-color);
+ overflow: clip auto !important;
}
.extra-network-pane .extra-network-cards {
@@ -1210,34 +1210,28 @@ body.resizing .resize-handle {
overflow: hidden;
}
-.extra-network-pane .extra-network-tree .tree-list .tree-list-container {
- flex: 1;
- overflow: clip auto !important;
- width: 100%;
-}
-
.extra-network-pane .extra-network-cards::-webkit-scrollbar,
-.extra-network-pane .tree-list-container::-webkit-scrollbar {
+.extra-network-pane .extra-network-tree::-webkit-scrollbar {
background-color: transparent;
width: 16px;
}
.extra-network-pane .extra-network-cards::-webkit-scrollbar-track,
-.extra-network-pane .tree-list-container::-webkit-scrollbar-track {
+.extra-network-pane .extra-network-tree::-webkit-scrollbar-track {
background-color: transparent;
background-clip: content-box;
}
.extra-network-pane .extra-network-cards::-webkit-scrollbar-thumb,
-.extra-network-pane .tree-list-container::-webkit-scrollbar-thumb {
+.extra-network-pane .extra-network-tree::-webkit-scrollbar-thumb {
background-color: var(--border-color-primary);
border-radius: 16px;
border: 4px solid var(--background-fill-primary);
}
.extra-network-pane .extra-network-cards::-webkit-scrollbar-button,
-.extra-network-pane .tree-list-container::-webkit-scrollbar-button {
+.extra-network-pane .extra-network-tree::-webkit-scrollbar-button {
display: none;
}