Groq and OR switch without save
All checks were successful
Android Build Final Fixed / build-android (push) Successful in 7m8s

This commit is contained in:
2026-01-27 06:29:46 +01:00
parent 20f6191385
commit 4b4331cd0c
4 changed files with 190 additions and 77 deletions

View File

@@ -434,3 +434,88 @@ html {
border-radius: 12px;
text-align: center;
}
/* --- AI Provider Switch (Neu) --- */
.provider-switch {
display: flex;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
padding: 3px;
border: 1px solid rgba(255, 255, 255, 0.08);
/* Zwischen h1 und den Icons positionieren */
margin: 0 10px;
}
.prov-btn {
border: none;
background: transparent;
color: var(--text-secondary);
padding: 6px 14px;
border-radius: 9px;
cursor: pointer;
font-size: 0.75rem;
font-weight: 700;
transition: all 0.2s ease;
}
.prov-btn.active {
background: var(--accent-color);
color: white;
}
/* --- Config Section Refinement --- */
.config-section {
margin-bottom: 20px;
}
.config-section label {
display: block;
font-size: 0.7rem;
color: var(--text-secondary);
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
/* --- Markdown Content Styling --- */
.markdown-body {
font-size: 0.95rem;
color: var(--text-primary);
line-height: 1.6;
}
.markdown-body h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 1.15rem;
color: #ffffff;
font-weight: 700;
}
.markdown-body p {
margin: 0;
}
/* --- Status Indicators --- */
.loading-spinner {
text-align: center;
padding: 40px;
color: var(--text-secondary);
font-style: italic;
animation: pulse-subtle 2s infinite;
}
.empty-msg {
text-align: center;
color: var(--text-secondary);
margin-top: 40px;
font-size: 0.9rem;
opacity: 0.8;
}
/* --- Layout Adjustment für Provider Switch --- */
.header-main {
display: flex;
align-items: center;
gap: 12px;
}