Files
theia-code-os/examples/browser/vibn.css
mawkone 8bb5110148
Some checks failed
Playwright Tests / Playwright Tests (ubuntu-22.04, Node.js 22.x) (push) Has been cancelled
3PP License Check / 3PP License Check (11, 22.x, ubuntu-22.04) (push) Has been cancelled
Publish packages to NPM / Perform Publishing (push) Has been cancelled
deploy: current vibn theia state
Made-with: Cursor
2026-02-27 12:01:08 -08:00

45 lines
1.3 KiB
CSS

/* ============================================================
vibn.css — custom UI overrides for Vibn IDE
Loaded via <link> in index.html. Edit here; hard-refresh
(Cmd+Shift+R) to see changes without a webpack rebuild.
============================================================ */
/* Hide the right sidebar icon strip (tab bar + sidebar menu)
but keep the chat panel itself visible */
#theia-right-content-panel > .theia-app-sidebar-container {
display: none !important;
width: 0 !important;
min-width: 0 !important;
}
/* Default right panel open width */
#theia-right-content-panel {
width: 300px !important;
min-width: 300px !important;
}
/* Hide the chat welcome screen content */
.theia-WelcomeMessage-Logo,
.theia-WelcomeMessage-Content,
.theia-WelcomeMessage-RecommendedNote,
.theia-WelcomeMessage-AgentButtons,
.theia-WelcomeMessage-AlternativeOptions,
.theia-WelcomeMessage-OrDivider,
.theia-WelcomeMessage-AgentSelection,
.theia-alert-message-container {
display: none !important;
}
/* Hide the "Keep chats short and focused" suggestion banner */
.chat-agent-suggestion {
display: none !important;
}
/* Hide specific chat toolbar buttons */
#chat-view\.ai-chat-summary-current-session,
#extract-widget,
#chat\:widget\:lock,
#chat\:widget\:session-settings {
display: none !important;
}