From d438ff62ad8ba890fbab5380785b723ed25afd34 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 20:47:45 -0800 Subject: feat(vanilla): implement read/star toggle and filtering (NK-d4c8jv) --- vanilla/style.css | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) (limited to 'vanilla/style.css') diff --git a/vanilla/style.css b/vanilla/style.css index f83011f..729787b 100644 --- a/vanilla/style.css +++ b/vanilla/style.css @@ -96,6 +96,34 @@ body { .entry-header { margin-bottom: 0.5rem; + position: relative; + padding-left: 0; +} + +.entry-controls { + display: inline-block; + vertical-align: middle; + margin-right: 0.5rem; +} + +.btn-star, +.btn-read { + background: none; + border: none; + cursor: pointer; + font-size: 1rem; + padding: 2px 4px; + margin-right: 4px; + color: #ccc; +} + +.btn-star.active { + color: orange; +} + +.btn-star:hover, +.btn-read:hover { + color: #888; } .entry-title { @@ -103,13 +131,22 @@ body { font-weight: bold; color: var(--link-color); text-decoration: none; - display: block; + display: inline-block; + /* Changed to inline-block for alignment */ + vertical-align: middle; margin-bottom: 0.25rem; } +.entry-title.read { + font-weight: normal; + color: #555; + text-decoration: none; +} + .entry-meta { font-size: 0.85rem; color: #666; + margin-top: 4px; } .entry-content { -- cgit v1.2.3