2024-08-18 17:02:11 -05:00
|
|
|
|
.split-pane {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
|
|
|
|
.pane {
|
|
|
|
|
|
overflow-x: scroll;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.gutter {
|
|
|
|
|
|
cursor: e-resize;
|
|
|
|
|
|
position: relative;
|
2026-01-24 23:02:54 -06:00
|
|
|
|
width: 0;
|
|
|
|
|
|
|
|
|
|
|
|
&::after {
|
2024-08-18 17:02:11 -05:00
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
bottom: 0;
|
2026-01-24 23:02:54 -06:00
|
|
|
|
left: -5px;
|
|
|
|
|
|
width: 10px;
|
|
|
|
|
|
background: #303030;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: opacity .1s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:hover::after {
|
|
|
|
|
|
opacity: 1;
|
2024-08-18 17:02:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|