fix(chat): align floating chat send button colors with home/mothership chat#3876
fix(chat): align floating chat send button colors with home/mothership chat#3876waleedlatif1 merged 1 commit intostagingfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
PR SummaryLow Risk Overview This switches the buttons to Written by Cursor Bugbot for commit 387693a. Configure here. |
Greptile SummaryThis PR fixes the floating chat panel's send/stop button colors to match the home and mothership chat by replacing CSS variable-based color values with the same hardcoded hex values used in Changes:
Confidence Score: 5/5This PR is safe to merge — it is a minimal, targeted visual bug fix with no logic changes. The change is a straightforward color alignment: same hardcoded hex values already proven correct in the home chat are applied here, and adding No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Floating Chat Buttons] --> B{isStreaming?}
B -- Yes --> C[Stop Button
variant=ghost
bg-383838 / dark:bg-E0E0E0
hover:bg-575757 / dark:hover:bg-CFCFCF]
B -- No --> D{Has input?}
D -- Yes --> E[Send Button - Active
variant=ghost
bg-383838 / dark:bg-E0E0E0
hover:bg-575757 / dark:hover:bg-CFCFCF]
D -- No --> F[Send Button - Disabled
variant=ghost
bg-808080 / dark:bg-808080]
Reviews (1): Last reviewed commit: "fix(chat): align floating chat send butt..." | Re-trigger Greptile |
Summary
variant='ghost'to both buttons to prevent the default Button variant's background and border from bleeding through and conflicting with custom color classesType of Change
Testing
Tested manually
Checklist