diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-18 19:44:25 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-18 19:44:25 -0800 |
| commit | 40dd80f76b9de72248404b0c097df7d3f04a2362 (patch) | |
| tree | f6382266adca6122983abd8b570906c44eca27b2 /web | |
| parent | 8518868ee671c4bc99b27fbda47bb93a1e366eff (diff) | |
| download | neko-40dd80f76b9de72248404b0c097df7d3f04a2362.tar.gz neko-40dd80f76b9de72248404b0c097df7d3f04a2362.tar.bz2 neko-40dd80f76b9de72248404b0c097df7d3f04a2362.zip | |
Remove visual styling for read items per user request
Diffstat (limited to 'web')
| -rw-r--r-- | web/dist/v3/index.html | 4 | ||||
| -rw-r--r-- | web/dist/v3/themes/codex.css | 8 | ||||
| -rw-r--r-- | web/dist/v3/themes/refined.css | 9 | ||||
| -rw-r--r-- | web/dist/v3/themes/sakura.css | 9 | ||||
| -rw-r--r-- | web/dist/v3/themes/terminal.css | 8 |
5 files changed, 6 insertions, 32 deletions
diff --git a/web/dist/v3/index.html b/web/dist/v3/index.html index 16f05cf..6d439a3 100644 --- a/web/dist/v3/index.html +++ b/web/dist/v3/index.html @@ -5,8 +5,8 @@ <link rel="icon" type="image/svg+xml" href="/vite.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>neko</title> - <script type="module" crossorigin src="/v3/assets/index-BqXsvyTg.js"></script> - <link rel="stylesheet" crossorigin href="/v3/assets/index-BaJs_RDt.css"> + <script type="module" crossorigin src="/v3/assets/index-DWqXmqNm.js"></script> + <link rel="stylesheet" crossorigin href="/v3/assets/index-C877sXzG.css"> </head> <body> <div id="app"></div> diff --git a/web/dist/v3/themes/codex.css b/web/dist/v3/themes/codex.css index fcf4e33..e4dd176 100644 --- a/web/dist/v3/themes/codex.css +++ b/web/dist/v3/themes/codex.css @@ -182,16 +182,10 @@ body { border-radius: 0; padding-bottom: 2.5rem; border-bottom: none; - transition: opacity 0.4s ease; + } -.feed-item.read { - opacity: 0.5; -} -.feed-item.read .item-title { - color: var(--codex-muted); -} /* Decorative separator between items -- a subtle fleuron */ .feed-item+.feed-item::before { diff --git a/web/dist/v3/themes/refined.css b/web/dist/v3/themes/refined.css index 191a5a2..75137c7 100644 --- a/web/dist/v3/themes/refined.css +++ b/web/dist/v3/themes/refined.css @@ -86,17 +86,10 @@ 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 { font-size: 1.7rem; diff --git a/web/dist/v3/themes/sakura.css b/web/dist/v3/themes/sakura.css index 948e22e..095ae57 100644 --- a/web/dist/v3/themes/sakura.css +++ b/web/dist/v3/themes/sakura.css @@ -195,17 +195,10 @@ body { margin-top: 2.5rem; border-radius: 0; border-bottom: none; - transition: opacity 0.4s ease; + } -.feed-item.read { - opacity: 0.4; -} -.feed-item.read .item-title { - color: var(--sakura-stone); - font-weight: 400; -} /* Subtle separator -- a single thin rule, Japanese-style restraint */ .feed-item+.feed-item { diff --git a/web/dist/v3/themes/terminal.css b/web/dist/v3/themes/terminal.css index 484d3ff..929fac0 100644 --- a/web/dist/v3/themes/terminal.css +++ b/web/dist/v3/themes/terminal.css @@ -215,16 +215,10 @@ body { padding: 1.25rem 0.5rem; margin-top: 1.5rem; border-bottom: 1px solid var(--border-color); - transition: opacity 0.4s ease; + } -.feed-item.read { - opacity: 0.35; -} -.feed-item.read .item-title { - text-decoration: none; -} .feed-item.selected { background-color: var(--terminal-dim); |
