Merge pull request #7831 from lolipodass/horizontal-bar-split-view

add horizontal bar simular to vertical in split view
This commit is contained in:
mr. m
2025-04-23 14:21:24 +02:00
committed by GitHub

View File

@@ -230,3 +230,22 @@
opacity: 1;
}
}
.zen-split-view-splitter[orient='horizontal'] {
&::before {
height: 2px;
width: 50px;
background: var(--button-primary-bgcolor);
border-radius: 2px;
content: '';
position: absolute;
top: 40%;
left: 50%;
opacity: 0;
transition: opacity 0.1s ease-in-out;
pointer-events: none;
}
&:hover::before {
opacity: 1;
}
}