Skip to content

Commit 4757404

Browse files
committed
mhutchie#132 fix overlapping issues
1 parent 8beaa2b commit 4757404

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/gitGraphView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,8 +700,8 @@ export class GitGraphView extends Disposable {
700700
<div id="commitTable"></div>
701701
</div>
702702
<div id="footer"></div>
703+
<div id="scrollShadow"></div>
703704
</div>
704-
<div id="scrollShadow"></div>
705705
<script nonce="${nonce}">var initialState = ${JSON.stringify(initialState)}, globalState = ${JSON.stringify(globalState)}, workspaceState = ${JSON.stringify(workspaceState)};</script>
706706
<script nonce="${nonce}" src="${this.getMediaUri('out.min.js')}"></script>
707707
</body>`;

web/styles/main.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ code{
7676
right:0;
7777
height:6px;
7878
box-shadow: inset 0 6px 6px -6px var(--vscode-scrollbar-shadow);
79-
z-index:20;
79+
z-index:11;
8080
pointer-events:none;
8181
}
8282

@@ -282,7 +282,7 @@ code{
282282
#tableColHeaders.sticky .tableColHeader {
283283
position: sticky;
284284
top: inherit;
285-
z-index: 3;
285+
z-index: 11;
286286
background-color: var(--vscode-editor-background);
287287
}
288288
.resizeCol{
@@ -801,7 +801,7 @@ body.tagLabelsRightAligned .gitRef.tag{
801801

802802
#controls.sticky {
803803
position:sticky;
804-
z-index: 4;
804+
z-index:12;
805805
}
806806

807807
#repoControl, #branchControl, #showRemoteBranchesControl{

0 commit comments

Comments
 (0)