45 lines
1.3 KiB
CSS
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;
|
|
}
|