slack status without the slack status.zzstoatzz.io/
quickslice

fix: Ensure link hover colors respect user's accent color preference

- Add explicit :link and :visited states to prevent browser default blue
- Ensure :hover and :active states use var(--accent) consistently
- Fixes issue where status author links showed blue on hover

Changed files
+14 -2
templates
+7 -1
templates/feed.html
··· 662 662 transition: color 0.2s; 663 663 } 664 664 665 - .status-author:hover { 665 + .status-author:link, 666 + .status-author:visited { 667 + color: var(--text-secondary); 668 + } 669 + 670 + .status-author:hover, 671 + .status-author:active { 666 672 color: var(--accent); 667 673 } 668 674
+7 -1
templates/status.html
··· 599 599 border-radius: var(--radius-sm); 600 600 } 601 601 602 + .handle-link:link, 603 + .handle-link:visited { 604 + color: var(--text-secondary); 605 + } 606 + 602 607 .handle-link::before { 603 608 content: ''; 604 609 position: absolute; ··· 611 616 filter: blur(8px); 612 617 } 613 618 614 - .handle-link:hover { 619 + .handle-link:hover, 620 + .handle-link:active { 615 621 color: var(--accent); 616 622 text-shadow: 0 0 12px var(--accent); 617 623 }