From 58ed199636664bd15b5024b4396782d1bd172d57 Mon Sep 17 00:00:00 2001 From: openclaw Date: Sun, 15 Feb 2026 01:28:05 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=89=8D=E5=8F=B0=E5=8D=A1=E7=89=87?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E6=A0=87=E7=AD=BE(tags)=E8=8D=AF=E4=B8=B8?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/index.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/templates/index.html b/templates/index.html index 7dd772c..7bd7aec 100644 --- a/templates/index.html +++ b/templates/index.html @@ -146,6 +146,16 @@ background: #d9d9d9; } + .card-tags { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 4px; } + .card-tag { + font-size: 11px; + color: #667eea; + background: rgba(102,126,234,0.1); + padding: 2px 8px; + border-radius: 10px; + white-space: nowrap; + } + .empty-state { grid-column: 1 / -1; text-align: center; @@ -268,6 +278,7 @@
${escapeHTML(s.name)}
${s.description ? `
${escapeHTML(s.description)}
` : ''} + ${s.tags ? `
${s.tags.split(',').map(t => `${escapeHTML(t.trim())}`).join('')}
` : ''}
`;