Merge pull request #285035 from microsoft/tyriar/285032
Some checks are pending
Monaco Editor checks / Monaco Editor checks (push) Waiting to run
Code OSS (node_modules) / Compile (push) Waiting to run
Code OSS (node_modules) / Linux (push) Waiting to run
Code OSS (node_modules) / macOS (push) Waiting to run
Code OSS (node_modules) / Windows (push) Waiting to run

Remove forced layout from terminal command guide
This commit is contained in:
Daniel Imms 2025-12-25 13:09:39 -08:00 committed by GitHub
commit 64929b87d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -543,6 +543,7 @@
box-sizing: border-box;
transform: translateX(3px);
pointer-events: none;
margin-left: -20px;
}
.terminal-command-guide.top {
border-top-left-radius: 1px;

View File

@ -331,9 +331,6 @@ export class MarkNavigationAddon extends Disposable implements IMarkTracker, ITe
element.classList.add('bottom');
}
}
if (this._terminal?.element) {
element.style.marginLeft = `-${getWindow(this._terminal.element).getComputedStyle(this._terminal.element).paddingLeft}`;
}
}));
}
}