Skip to content

Commit ae75f72

Browse files
style(AcpSessionView): give sendWithGoal btn amber tint
Palette-neutral colors made the button invisible against most themes; amber tint gives it persistent visual identity so users can distinguish it from the plain Send button at a glance.
1 parent 6a2f4b7 commit ae75f72

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/widgets/AcpSessionView.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,8 +574,8 @@ void AcpSessionView::buildUi()
574574
m_sendWithGoalBtn->setToolButtonStyle(Qt::ToolButtonTextOnly);
575575
m_sendWithGoalBtn->setToolTip(tr("Send with Goal — evaluate success criteria automatically"));
576576
m_sendWithGoalBtn->setStyleSheet(QStringLiteral(
577-
"QToolButton { color: palette(placeholder-text); padding: 1px 6px; border: 1px solid transparent; border-radius: 3px; }"
578-
"QToolButton:hover { color: palette(text); border: 1px solid palette(mid); }"));
577+
"QToolButton { color: rgb(180, 140, 50); padding: 1px 6px; border: 1px solid rgba(180, 140, 50, 80); border-radius: 3px; }"
578+
"QToolButton:hover { color: rgb(200, 160, 60); background: rgba(180, 140, 50, 32); border: 1px solid rgba(180, 140, 50, 120); }"));
579579
connect(m_sendWithGoalBtn, &QToolButton::clicked, this, &AcpSessionView::sendWithGoalRequested);
580580
btnRow->addWidget(m_sendWithGoalBtn);
581581

0 commit comments

Comments
 (0)