diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 09:30:16 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 09:30:16 -0800 |
| commit | 22eacbaf2712aee2a1c448a0e53f241f8c7bd255 (patch) | |
| tree | 29d5f20166c378e082216346043585cb3a0cc74c /frontend/src/components/FeedItem.css | |
| parent | 08032aab10f0e1429d25ecae1acf6c40d63e9ff4 (diff) | |
| download | neko-22eacbaf2712aee2a1c448a0e53f241f8c7bd255.tar.gz neko-22eacbaf2712aee2a1c448a0e53f241f8c7bd255.tar.bz2 neko-22eacbaf2712aee2a1c448a0e53f241f8c7bd255.zip | |
ui: simplify themes to light/dark and improve theme-aware styling (fixing NK-dp5efo)
Diffstat (limited to 'frontend/src/components/FeedItem.css')
| -rw-r--r-- | frontend/src/components/FeedItem.css | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/frontend/src/components/FeedItem.css b/frontend/src/components/FeedItem.css index 1736032..fc2c850 100644 --- a/frontend/src/components/FeedItem.css +++ b/frontend/src/components/FeedItem.css @@ -52,7 +52,8 @@ } .star-btn.is-unstarred { - color: black; + color: var(--text-color); + opacity: 0.3; } .star-btn:hover { @@ -60,8 +61,8 @@ } .action-btn { - background: whitesmoke; - border: none; + background: var(--sidebar-bg); + border: 1px solid var(--border-color, #ccc); cursor: pointer; padding: 2px 6px; font-size: 1rem; @@ -102,7 +103,8 @@ .item-description blockquote { padding: 1rem 1rem 0 1rem; - border-left: 4px solid #ddd; - color: #666; + border-left: 4px solid var(--sidebar-bg); + color: var(--text-color); + opacity: 0.8; margin-left: 0; }
\ No newline at end of file |
