fix(ui): unify thinking controls with icon buttons

This commit is contained in:
Shantur Rathore
2026-02-09 16:20:33 +00:00
parent d143faf8eb
commit 01300a81de
3 changed files with 73 additions and 57 deletions

View File

@@ -298,11 +298,20 @@
gap: 0;
}
.message-reasoning-header {
display: flex;
align-items: stretch;
justify-content: space-between;
gap: 0.5rem;
}
.message-reasoning-toggle {
width: 100%;
flex: 1 1 auto;
min-width: 0;
width: auto;
display: flex;
align-items: center;
justify-content: space-between;
justify-content: flex-start;
gap: 0.65rem;
background: none;
border: none;
@@ -314,6 +323,13 @@
transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.message-reasoning-actions {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.25rem 0.6rem 0.25rem 0;
}
.message-reasoning-toggle:hover {
background-color: var(--surface-hover);
}