Amélioration UI: header fixe et ajustement layout chat

- Header fixe positionné à côté du menu hamburger (80px de gauche)
- Suppression du sous-titre "Visualiseur de base Weaviate"
- Fix variable CSS: var(--color-bg-primary) → var(--color-bg-main)
- Ajustement hauteur chat: fenêtres RAG descendent jusqu'en bas
- Barres de conversation touchent le bas de l'écran

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-30 19:12:19 +01:00
parent d91abd3566
commit 127658aefd
2 changed files with 41 additions and 25 deletions

View File

@@ -18,9 +18,15 @@
}
}
/* Remove header margin for full-width layout */
/* Keep header fixed but adjust for chat full-width layout */
.site-header {
margin-left: 0 !important;
padding-left: calc(1rem + 48px + 1rem) !important; /* Clear hamburger menu */
}
@media (min-width: 992px) {
.site-header {
padding-left: calc(1rem + 48px + 1rem) !important;
}
}
/* Chat-specific styles */
@@ -28,7 +34,7 @@
display: grid;
grid-template-columns: 60% 40%;
gap: 1.5rem;
height: calc(100vh - 300px);
height: calc(100vh - 90px - 1.5rem);
min-height: 600px;
width: 100%;
}
@@ -49,6 +55,7 @@
.chat-main {
display: flex;
flex-direction: column;
height: 100%;
background-color: rgba(255, 255, 255, 0.06);
border-radius: 12px;
border: 1px solid rgba(125, 110, 88, 0.25);
@@ -258,6 +265,7 @@
.context-sidebar {
display: flex;
flex-direction: column;
height: 100%;
background-color: rgba(255, 255, 255, 0.06);
border-radius: 12px;
border: 1px solid rgba(125, 110, 88, 0.25);