Open
Description
Description
The border for the Changes and History tab is always on the right which causes the tabs to be aligned differently depending on which tab is selected. Here you can see how there is no border between the tabs when history is selected and the right edge of the history tab is misaligned with the rest of the UI:
See the how the right side of the history tab aligns with the black above it.
I think that these lines are the culprits:
jupyterlab-git/src/style/GitPanel.ts
Lines 21 to 29 in 2787178
jupyterlab-git/src/style/GitPanel.ts
Lines 31 to 41 in 2787178
As well the tab indicator overflows into this border region:
A pretty simple 'fix' is to just remove the borderRight
diff --git a/src/style/GitPanel.ts b/src/style/GitPanel.ts
index 685cd83..270373c 100644
--- a/src/style/GitPanel.ts
+++ b/src/style/GitPanel.ts
@@ -38,7 +38,6 @@ export const tabClass = style({
borderBottom:
'var(--jp-border-width) solid var(--jp-border-color2)!important',
- borderRight: 'var(--jp-border-width) solid var(--jp-border-color2)!important',
$nest: {
span: {