feat(ui): show session changes list in Status tab

This commit is contained in:
Shantur Rathore
2026-02-09 16:21:26 +00:00
parent 01300a81de
commit f87c83cadd
2 changed files with 103 additions and 2 deletions

View File

@@ -303,6 +303,16 @@
align-items: stretch;
justify-content: space-between;
gap: 0.5rem;
transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.message-reasoning-header:hover {
background-color: var(--surface-hover);
}
.message-reasoning-header:focus-within {
outline: none;
box-shadow: 0 0 0 1px var(--accent-primary);
}
.message-reasoning-toggle {
@@ -331,12 +341,12 @@
}
.message-reasoning-toggle:hover {
background-color: var(--surface-hover);
background-color: transparent;
}
.message-reasoning-toggle:focus-visible {
outline: none;
box-shadow: 0 0 0 1px var(--accent-primary);
box-shadow: none;
}
.message-reasoning-label {