From b5d7720e52ecc3ec5a9f0e3daee2b9b82c13d46f Mon Sep 17 00:00:00 2001 From: mac Date: Tue, 28 Jul 2026 13:40:45 +0800 Subject: [PATCH] =?UTF-8?q?v2.1.19=20=E2=80=94=20=E6=97=A5=E5=8E=86?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=BC=B9=E7=AA=97=E6=98=BE=E7=A4=BA=E6=AF=8F?= =?UTF-8?q?=E4=B8=AA=E4=BA=8B=E4=BB=B6=E7=9A=84=E6=97=A5=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/app.js | 6 ++++-- static/style.css | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/static/app.js b/static/app.js index 06173e3..73d5825 100644 --- a/static/app.js +++ b/static/app.js @@ -458,10 +458,12 @@ html += '
'; html += '
' + day.date + '
'; day.events.forEach(function(e) { - var timeStr = e.time ? ' (' + e.time + ')' : ''; + var timeStr = e.time ? e.time : ''; + var dateStr = e.date || ''; html += '
' + '📌' + - '' + esc(e.summary) + '' + esc(timeStr) + '' + + '' + esc(e.summary) + '' + + '' + esc(dateStr) + (timeStr ? ' ' + esc(timeStr) : '') + '' + '
'; }); html += '
'; diff --git a/static/style.css b/static/style.css index af352a7..b913782 100644 --- a/static/style.css +++ b/static/style.css @@ -1461,7 +1461,7 @@ body { .sync-event + .sync-event { border-top: 1px solid var(--bg); } .sync-event-icon { flex-shrink: 0; } .sync-event-text { flex: 1; } -.sync-event-time { font-size: 11px; color: var(--text-muted); margin-left: 6px; } +.sync-event-meta { font-size: 11px; color: var(--text-muted); } .sync-modal-footer { padding: 12px 20px; border-top: 1px solid var(--border);