mirror of
https://github.com/bwya77/vscode-dark-islands.git
synced 2026-05-09 08:25:35 +02:00
[PR #67] fix: remove explorer scaleY transforms and terminal tabs width overrides #107
Labels
No labels
bug
bug
duplicate
enhancement
enhancement
Missing Info
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vscode-dark-islands#107
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/bwya77/vscode-dark-islands/pull/67
Author: @santigamo
Created: 2/18/2026
Status: 🔄 Open
Base:
main← Head:fix/explorer-scroll-and-terminal-tabs📝 Commits (1)
2dd261afix: remove explorer scaleY transforms and terminal tabs width overrides📊 Changes
1 file changed (+0 additions, -16 deletions)
View changed files
📝
settings.json(+0 -16)📄 Description
Summary
scaleY(1.15)/scaleY(0.87)transforms on.explorer-folders-viewrows that break VS Code's virtualized list — causes files beyond a certain depth to disappear and mouse scrolling to stop workingmin-width: 220px,margin-right: 20px, andwidth: calc(100% - 20px)on terminal tab rows that clip the close (X) button when the terminal tabs panel is narrower than 220pxRoot cause
Explorer: VS Code uses a virtualized list for the file explorer. The CSS transforms scale rows visually but the scroll position calculations still use original dimensions, causing items to become unreachable and scroll to break entirely.
Terminal tabs: The forced
min-width: 220pxon the terminal tabs container combined withwidth: calc(100% - 20px)andmargin-right: 20pxon each row clips the action buttons (close/X) at the right edge when the panel is narrower than the forced minimum.Fixes
Test plan
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.