VS Code Web: sticky breadcrumbs
Keeps the file-path breadcrumbs always visible above the editor (works on github.dev too).
Code to copy
/* Make the file-path breadcrumbs sticky above the editor (works on github.dev too) */
.monaco-workbench .editor-instance .breadcrumbs-control,
.monaco-workbench .breadcrumbs-control {
position: sticky !important;
top: 0 !important;
z-index: 5 !important;
background: var(--vscode-breadcrumb-background) !important;
border-bottom: 1px solid rgba(127,127,127,0.15) !important;
}
How to use this example
- Copy the code with the button above.
- Install JustZix (2 minutes) and open the extension on the target page.
- Add a new rule matching that page.
- Paste the code into the rule's CSS panel and save — the effect appears instantly.
Rate this example
No ratings yet — be the first.