fix: fix editor progress position

This commit is contained in:
ermin.zem
2023-10-16 11:03:02 +08:00
parent cea64becfa
commit ec445b607c
2 changed files with 6 additions and 1 deletions

View File

@@ -90,7 +90,7 @@
.monaco-workbench .part.editor > .content .monaco-progress-container {
position: absolute;
left: 0;
bottom: 0;
top: 33px; /* at the bottom of the 35px height title container */
z-index: 5; /* on top of things */
height: 2px;
}

View File

@@ -45,3 +45,8 @@
.monaco-workbench .part.editor > .content .editor-group-container > .title .breadcrumbs-below-tabs .breadcrumbs-control .monaco-breadcrumb-item:last-child .codicon:last-child {
display: none; /* hides chevrons when last item */
}
.monaco-workbench .part.editor > .content .title .monaco-progress-container {
top: unset;
bottom: 0;
}