diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-18 19:40:46 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-18 19:40:46 -0800 |
| commit | 8518868ee671c4bc99b27fbda47bb93a1e366eff (patch) | |
| tree | 284630e24f4d9f505067df1f02fa617411f435b4 /frontend-vanilla/public/themes/refined.css | |
| parent | 7a7217d023d8decb433a57300072bb00064ef88d (diff) | |
| download | neko-8518868ee671c4bc99b27fbda47bb93a1e366eff.tar.gz neko-8518868ee671c4bc99b27fbda47bb93a1e366eff.tar.bz2 neko-8518868ee671c4bc99b27fbda47bb93a1e366eff.zip | |
Improve scroll-to-read robustness and add visual feedback for read items across all themes
Diffstat (limited to 'frontend-vanilla/public/themes/refined.css')
| -rw-r--r-- | frontend-vanilla/public/themes/refined.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/frontend-vanilla/public/themes/refined.css b/frontend-vanilla/public/themes/refined.css index fab2b96..191a5a2 100644 --- a/frontend-vanilla/public/themes/refined.css +++ b/frontend-vanilla/public/themes/refined.css @@ -86,6 +86,16 @@ body { .feed-item { padding: var(--spacing-md) var(--spacing-sm); margin-top: var(--spacing-xl); + transition: opacity 0.3s ease; +} + +.feed-item.read { + opacity: 0.45; +} + +.feed-item.read .item-title { + font-weight: 500; + opacity: 0.8; } .item-title { @@ -269,4 +279,4 @@ select:focus { padding: 2px 8px; border-radius: 4px; letter-spacing: 0.04em; -} +}
\ No newline at end of file |
