Improve visibility of live input activity dots
Some checks failed
ci-bundle.yml / Improve visibility of live input activity dots (push) Failing after 0s
ci-copr.yml / Improve visibility of live input activity dots (push) Failing after 0s
ci-homebrew.yml / Improve visibility of live input activity dots (push) Failing after 0s

This commit is contained in:
Joey Yakimowich-Payne 2026-02-11 16:22:40 -07:00
commit 718c45b76a

View file

@ -735,19 +735,22 @@
<style> <style>
.activity-dot { .activity-dot {
display: inline-block; display: inline-block;
width: 12px; width: 14px;
height: 12px; height: 14px;
border-radius: 50%; border-radius: 50%;
transition: background-color 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
border: 1px solid #9ca3af; flex-shrink: 0;
vertical-align: middle;
margin-right: 3px;
} }
.dot-green { .dot-green {
background-color: #22c55e; background-color: #22c55e;
box-shadow: 0 0 4px #22c55e; box-shadow: 0 0 6px #22c55e;
border-color: #16a34a; border: 1px solid #16a34a;
} }
.dot-gray { .dot-gray {
background-color: #6b7280; background-color: #6b7280;
border: 1px solid #d1d5db;
} }
</style> </style>