- Use Sidebar onNavigate callback instead of display:contents click interception - Use DataTable fillHeight prop instead of manual scroll wrapper divs - Fix DataTable scroll/pagination by adding overflow:hidden to content container - Fix left panel in split view to use flex column instead of overflow:auto - Make error tab stack trace scrollable for large traces - Add nightly SonarQube workflow with manual trigger support Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 lines
674 B
CSS
46 lines
674 B
CSS
.splitView {
|
|
display: flex;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.leftPanel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.splitter {
|
|
width: 5px;
|
|
flex-shrink: 0;
|
|
cursor: col-resize;
|
|
background: var(--border);
|
|
transition: background 0.15s;
|
|
touch-action: none;
|
|
}
|
|
|
|
.splitter:hover,
|
|
.splitter:active {
|
|
background: var(--amber);
|
|
}
|
|
|
|
.rightPanel {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
min-width: 0;
|
|
}
|
|
|
|
.emptyRight {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
color: var(--text-muted);
|
|
font-size: 0.875rem;
|
|
}
|