[aidan] ui: grey out chat pill when not selected

This commit is contained in:
abccodes
2026-06-17 23:21:02 -07:00
parent 09fa080378
commit 9a1899ecb4
@@ -431,7 +431,7 @@ const DashboardToolbar = React.forwardRef<HTMLDivElement, Props>(
sx={{
display: 'inline-flex', alignItems: 'center', gap: 0.3,
fontSize: '0.74rem', fontWeight: 600,
color: c.text.primary,
color: inputOpen && !historyOpen ? c.text.primary : c.text.secondary,
bgcolor: c.bg.surface,
border: `1px solid ${inputOpen && !historyOpen ? c.border.medium : c.border.subtle}`,
boxShadow: inputOpen && !historyOpen ? c.shadow.sm : 'none',