v37: Add right margin to language column

This commit is contained in:
primal
2026-01-30 16:01:47 -05:00
parent 2504927022
commit 388e846f18
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ function initDashboard() {
// Language indicator (fixed width)
const lang = f.language || '';
html += `<span style="display: inline-block; width: 32px; color: #666; font-size: 10px; font-family: monospace; text-align: center;">${escapeHtml(lang)}</span>`;
html += `<span style="display: inline-block; width: 32px; margin-right: 6px; color: #666; font-size: 10px; font-family: monospace; text-align: center;">${escapeHtml(lang)}</span>`;
// Feed status buttons
html += renderStatusBtns(feedStatus, 'feed', f.url, f.status);
@@ -176,7 +176,7 @@ function initDashboard() {
// Language indicator (fixed width)
const lang = f.language || '';
html += `<span style="display: inline-block; width: 32px; color: #666; font-size: 10px; font-family: monospace; text-align: center; padding-top: 4px;">${escapeHtml(lang)}</span>`;
html += `<span style="display: inline-block; width: 32px; margin-right: 6px; color: #666; font-size: 10px; font-family: monospace; text-align: center; padding-top: 4px;">${escapeHtml(lang)}</span>`;
// Status buttons (pass/hold/skip + fail indicator if errors)
html += `<div style="padding-top: 2px;">${renderStatusBtns(status, 'feed', f.url, f.status)}</div>`;
+1 -1
View File
@@ -534,7 +534,7 @@ const dashboardHTML = `<!DOCTYPE html>
<div id="output"></div>
</div>
<div style="color: #333; font-size: 11px; margin-top: 10px;">v36</div>
<div style="color: #333; font-size: 11px; margin-top: 10px;">v37</div>
<div class="updated" id="updatedAt">Last updated: {{.UpdatedAt.Format "2006-01-02 15:04:05"}}</div>
</body>