aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/src/style.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-18 19:40:46 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-18 19:40:46 -0800
commit8518868ee671c4bc99b27fbda47bb93a1e366eff (patch)
tree284630e24f4d9f505067df1f02fa617411f435b4 /frontend-vanilla/src/style.css
parent7a7217d023d8decb433a57300072bb00064ef88d (diff)
downloadneko-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/src/style.css')
-rw-r--r--frontend-vanilla/src/style.css12
1 files changed, 11 insertions, 1 deletions
diff --git a/frontend-vanilla/src/style.css b/frontend-vanilla/src/style.css
index fd51eff..f6e7f2f 100644
--- a/frontend-vanilla/src/style.css
+++ b/frontend-vanilla/src/style.css
@@ -450,7 +450,17 @@ select:focus {
margin-top: 2rem;
border-bottom: none;
border-radius: 8px;
- transition: background-color 0.2s ease;
+ transition: background-color 0.2s ease, opacity 0.3s ease;
+}
+
+.feed-item.read {
+ opacity: 0.5;
+}
+
+.feed-item.read .item-title {
+ font-weight: normal;
+ color: var(--text-color);
+ opacity: 0.8;
}