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

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