mirror of
https://github.com/bwya77/vscode-dark-islands.git
synced 2026-05-09 08:25:35 +02:00
[GH-ISSUE #124] Explorer items hidden when using CSS transform on split-view-container #87
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#87
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?
Originally created by @DeepakRoy58 on GitHub (Apr 25, 2026).
Original GitHub issue: https://github.com/bwya77/vscode-dark-islands/issues/124
Applying the following custom CSS causes files at the top of the Explorer to be hidden:
Problem arrises at :
The items are still present but not visible. They only appear after clicking them, which triggers auto-scrolling.
=>Steps to Follow/Verify:
Apply the CSS above using a custom UI extension
Open a folder with multiple files
Check the Explorer panel
=>Actual behavior:
Top items are cut off or hidden. They become visible only after interaction.
=>Expected behavior:
All items should remain visible and scroll normally.
SOLUTION :
Proper fixes
->Remove it (best and cleanest)
-> If you still want spacing at the top (safe :))
Use padding instead of transform:
->Make sure scrolling isn’t blocked
If you’ve set this anywhere:
overflow: hidden;
change it to:
overflow: auto;