From ccd1fe15c110c1b83e5c36088a7840eae7666dab Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Mon, 22 Dec 2025 22:06:10 -0700 Subject: [PATCH] Update tag styling to match desktop app MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change tag display from transparent background with colored text to solid colored background with white text to match the desktop app: - Background: Solid tag color (was transparent with 20% opacity) - Text: White (was same color as tag) - Maintains existing rounded rectangle shape from CSS Tags now appear as colored pills with white text, matching the visual style of the desktop application. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- templates/tasks/_task_item.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/tasks/_task_item.html b/templates/tasks/_task_item.html index 4166816..8fb0a60 100644 --- a/templates/tasks/_task_item.html +++ b/templates/tasks/_task_item.html @@ -28,7 +28,7 @@ · {% endif %} {% for tag in task.tags.all %} - + {{ tag.name }} {% endfor %}