Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CAPY-DEMO.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Demo: This file was created to demonstrate a write operation during the background color change to green.
Update: additional minor edits applied.
13 changes: 13 additions & 0 deletions DEMO-BACKGROUND.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Demo background tweak

This branch forces the default workbench background to green for a visual demonstration.

Files touched:
- src/vs/workbench/browser/media/style.css (appended overrides)
- CAPY-DEMO.txt (marker)

This file exists to make the demo more traceable.

## Updates
- Removed redundant html override
- Added minor .part tint and kept lists readable
1 change: 1 addition & 0 deletions capy-demo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"background":"green","scope":"workbench-visible","rev":2}
10 changes: 10 additions & 0 deletions src/vs/workbench/browser/media/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -318,3 +318,13 @@ body {
outline: 1px dashed var(--vscode-toolbar-hoverOutline);
outline-offset: -1px;
}

/* Demo: force green background */
body, .monaco-workbench { background-color: green !important; }

.monaco-workbench.border { background-color: green !important; }

/* Demo: minor tweaks */
.monaco-workbench .part { background-color: rgba(0,128,0,0.03) !important; }
/* Keep lists readable */
.monaco-workbench .monaco-list:focus { background-color: inherit; }