summaryrefslogtreecommitdiff
path: root/web/static/css
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-23 10:29:02 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-23 10:29:02 -1000
commitbc4149d7c9fe7a698cf07895b504ab8f2b26f649 (patch)
tree0e82f17101ca3d925328c5d087a27285e0704a38 /web/static/css
parent539122f3c80fe1f27348f0ddfc7fd428a58384b8 (diff)
UI improvements: styling and layout fixes
- Prefill first store in shopping quick-add - Tone down overdue/priority styling (red -> amber) - Remove quick-add panel from tasks tab (use modal instead) - Increase card opacity for better readability - Swap task/event formatting (tasks get cards, events get border-l-4) - Add grid layout for tasks (2-3 columns on wider screens) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'web/static/css')
-rw-r--r--web/static/css/input.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/static/css/input.css b/web/static/css/input.css
index 4daceb0..c7fa1d2 100644
--- a/web/static/css/input.css
+++ b/web/static/css/input.css
@@ -24,12 +24,12 @@
@layer components {
/* Dark Glass Card */
.card {
- @apply bg-black/60 backdrop-blur-sm rounded-lg p-4 transition-all duration-200;
+ @apply bg-black/70 backdrop-blur-sm rounded-lg p-4 transition-all duration-200;
box-shadow: 0 0 12px black;
}
.card-hover {
- @apply hover:bg-black/70;
+ @apply hover:bg-black/80;
}
/* Navigation Pills */
@@ -63,12 +63,12 @@
}
.task-item {
- @apply bg-black/60 rounded-lg transition-colors;
+ @apply bg-black/70 rounded-lg transition-colors;
box-shadow: 0 0 12px black;
}
.task-item:hover {
- @apply bg-black/70;
+ @apply bg-black/80;
}
.line-clamp-3 {