-
Notifications
You must be signed in to change notification settings - Fork 38.2k
Closed
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable buginsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersterminalGeneral terminal issues that don't fall under another labelGeneral terminal issues that don't fall under another labelverifiedVerification succeededVerification succeeded
Milestone
Description
@kena0ki spotted in xtermjs/xterm.js#3058 (comment) that #104876 was caused because xterm.css was out of date.
Compare
vscode/src/vs/workbench/contrib/terminal/browser/media/xterm.css
Lines 64 to 80 in 2ee8b8c
| .xterm .xterm-helper-textarea { | |
| /* | |
| * HACK: to fix IE's blinking cursor | |
| * Move textarea out of the screen to the far left, so that the cursor is not visible. | |
| */ | |
| position: absolute; | |
| opacity: 0; | |
| left: -9999em; | |
| top: 0; | |
| width: 0; | |
| height: 0; | |
| z-index: -5; | |
| /** Prevent wrapping so the IME appears against the textarea at the correct position */ | |
| white-space: nowrap; | |
| overflow: hidden; | |
| resize: none; | |
| } |
To
We should remove the workaround in #104876 and re-sync xterm.css.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable buginsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersterminalGeneral terminal issues that don't fall under another labelGeneral terminal issues that don't fall under another labelverifiedVerification succeededVerification succeeded