1
0

auto-git:

[change] settings.html
This commit is contained in:
2025-05-25 00:52:53 +02:00
parent 83a88dd619
commit f5023acfb8

View File

@@ -102,34 +102,45 @@
margin-left: 0.8rem; margin-left: 0.8rem;
} }
/* Buttons */ /* Buttons */
.buttons { .action-btn {
display: flex; justify-content: flex-end; gap: 1rem; display: flex;
} align-items: center;
/* gap: 0.5em;
button.action { padding: 0.5em 1.2em;
padding: 0.5em 1.3em;
font-size: 1rem; font-size: 1rem;
font-weight: 600; font-weight: 600;
border: none; border-radius: 6px; border: none;
border-radius: 8px;
cursor: pointer; cursor: pointer;
transition: background 0.2s; transition: background 0.18s, color 0.18s;
background: var(--bg-sidebar);
color: var(--accent);
box-shadow: 0 1px 4px rgba(0,0,0,0.03);
} }
#cancelBtn { .action-btn .icon-left { margin-right: 0.2em; }
.ok-btn {
background: var(--accent);
color: #fff;
}
.ok-btn:hover {
background: #be2c4e; /* dunkleres rosa/blau für hover, anpassen falls du magst */
}
.cancel-btn {
background: #e2e8f0; background: #e2e8f0;
color: #475569; color: #475569;
} }
#cancelBtn:hover { .cancel-btn:hover {
background: #cbd5e1; background: #cbd5e1;
color: #1e293b; color: #1e293b;
} }
#okBtn { body.sky-mode .ok-btn {
background: #38bdf8; background: var(--accent);
color: #fff; color: #fff;
} }
#okBtn:hover { body.sky-mode .cancel-btn {
background: #0ea5e9; background: #dbeafe;
color: var(--accent);
} }
*/
/* Infotext */ /* Infotext */
.ollama-info { .ollama-info {