X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4ad6191d53207a8b2d4c0c8a30b18119daaa5fbc..cb73538f0851cea402a0544861966c2515a24b5b:/services/workbench2/src/views/workbench/workbench.tsx diff --git a/services/workbench2/src/views/workbench/workbench.tsx b/services/workbench2/src/views/workbench/workbench.tsx index be2542515b..4a2cd70098 100644 --- a/services/workbench2/src/views/workbench/workbench.tsx +++ b/services/workbench2/src/views/workbench/workbench.tsx @@ -119,7 +119,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, splitter: { "& > .layout-splitter": { - width: "2px", + width: "3px", }, "& > .layout-splitter-disabled": { pointerEvents: "none", @@ -292,7 +292,7 @@ const applyCollapsedState = isCollapsed => { const totalWidth: number = document.getElementsByClassName("splitter-layout")[0]?.clientWidth; const rightPanelExpandedWidth = (totalWidth - COLLAPSE_ICON_SIZE) / (totalWidth / 100); if (rightPanel) { - rightPanel.setAttribute("style", `width: ${isCollapsed ? rightPanelExpandedWidth : getSplitterInitialSize()}%`); + rightPanel.setAttribute("style", `width: ${isCollapsed ? `calc(${rightPanelExpandedWidth}% - 1rem)` : `${getSplitterInitialSize()}%`}`); } const splitter = document.getElementsByClassName("layout-splitter")[0]; isCollapsed ? splitter?.classList.add("layout-splitter-disabled") : splitter?.classList.remove("layout-splitter-disabled");