diff --git a/static/style.css b/static/style.css index b1cd4ff..7ab27fe 100644 --- a/static/style.css +++ b/static/style.css @@ -793,8 +793,8 @@ a:hover { color: var(--accent-hover); } .capture-item { display: flex; align-items: flex-start; - gap: 12px; - padding: 12px; + gap: 8px; + padding: 6px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); @@ -803,7 +803,7 @@ a:hover { color: var(--accent-hover); } .capture-text { flex: 1; - font-size: 0.92rem; + font-size: 0.80rem; } .capture-actions { diff --git a/templates/appointments.html b/templates/appointments.html index 34a7434..18beacc 100644 --- a/templates/appointments.html +++ b/templates/appointments.html @@ -22,7 +22,7 @@ {% set appt_date = appt.start_at.strftime('%A, %B %-d, %Y') if appt.start_at else 'No Date' %} {% if appt_date != current_date.value %} {% if not loop.first %}{% endif %} -
| + | Path {{ '▲' if current_sort == 'path' else ('▼' if current_sort == 'path_desc' else '') }} | -+ | Name {{ '▲' if current_sort == 'name' else ('▼' if current_sort == 'name_desc' else '') }} | -Type | -Size | -+ | Type | +Size | +Date {{ '▼' if current_sort == 'date' else ('▲' if current_sort == 'date_asc' else '') }} | -+ | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ item.folder }} | -+ | {{ item.folder }} | +{{ item.original_filename }} | -+ | {% if item.mime_type %}{{ item.mime_type.split('/')|last }}{% endif %} | -+ | {% if item.size_bytes %}{{ "%.1f"|format(item.size_bytes / 1024) }} KB{% endif %} | -+ | {{ item.created_at.strftime('%Y-%m-%d') if item.created_at else '' }} | -+ | Download |