fix(dashboard): match auto-refresh paused-dot outline to icon color#39909
Conversation
Use colorTextSecondary for the paused-state outline so it matches the adjacent play/pause icon color, instead of the dimmer colorBorder which made the dot hard to see against the container.
Code Review Agent Run #e897eeActionable Suggestions - 0Additional Suggestions - 1
Review Details
Bito Usage GuideCommands Type the following command in the pull request comment and save the comment.
Refer to the documentation for additional commands. Configuration This repository uses Documentation & Help |
There was a problem hiding this comment.
Pull request overview
Updates the dashboard auto-refresh status indicator’s paused-state dot outline color to improve contrast and visually align it with the adjacent play/pause icon styling.
Changes:
- Change paused-state dot outline from
theme.colorBordertotheme.colorTextSecondaryinStatusIndicatorDot.
|
🎪 Showtime deployed environment on GHA for 946cfaf • Environment: http://54.200.114.43:8080 (admin/admin) |
|
Bito Automatic Review Skipped – PR Already Merged |


SUMMARY
The auto-refresh status indicator's paused-state dot was using
theme.colorBorderfor its 1px outline, which is too dim against the surrounding container — making the dot nearly invisible. Switch the outline totheme.colorTextSecondaryso it visually aligns with the adjacent play/pause icon (which already usescolorTextSecondaryin the parenticonButtonStyles).Single-line change in
StatusIndicatorDot.tsx— only affects thePausedstatus; the other statuses (Success/Idle/Fetching/Delayed/Error) don't render a border.BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before: outline rendered with
colorBorder— barely visible.After: outline rendered with
colorTextSecondary— matches the play icon color.(Screenshots to be attached.)
TESTING INSTRUCTIONS
colorTextSecondary), not the dimmercolorBorder.ADDITIONAL INFORMATION