File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
src/vs/workbench/browser/parts/editor/media Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 193
193
.monaco-workbench .part .editor > .content .editor-group-container > .title .tabs-container .disable-sticky-tabs > .tab .sizing-fit .sticky-shrink ,
194
194
.monaco-workbench .part .editor > .content .editor-group-container > .title .tabs-container .disable-sticky-tabs > .tab .sizing-shrink .sticky-shrink ,
195
195
.monaco-workbench .part .editor > .content .editor-group-container > .title .tabs-container .disable-sticky-tabs > .tab .sizing-fixed .sticky-shrink {
196
- position : static; /** disable sticky positions for sticky compact/shrink/fixed tabs if the available space is too little */
196
+
197
+ /**
198
+ * If sticky tabs are explicitly disabled, because width is too little, make sure
199
+ * to reset all styles associated with sticky tabs. This includes position, z-index
200
+ * and left property (which is set on the element itself, hence important is needed).
201
+ */
202
+ position : relative;
203
+ z-index : unset;
204
+ left : unset !important ;
197
205
}
198
206
199
207
.monaco-workbench .part .editor > .content .editor-group-container > .title .tabs-container > .tab .sizing-shrink .tab-actions-left ::after ,
You can’t perform that action at this time.
0 commit comments