deploy: current vibn theia state
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

Made-with: Cursor
This commit is contained in:
2026-02-27 12:01:08 -08:00
commit 8bb5110148
3782 changed files with 640947 additions and 0 deletions

44
examples/browser/vibn.css Normal file
View File

@@ -0,0 +1,44 @@
/* ============================================================
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;
}