This commit is contained in:
2026-04-22 01:53:31 +09:00
parent a0e8a7faf4
commit bc62dcdd10
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -52,7 +52,7 @@
msg.className = "tls-log-msg";
if (severity && SEV_LABEL[severity] && severity !== "info") {
const sev = document.createElement("span");
sev.className = "text-" + (SEV_COLOR[severity] || "tx") + " font-bold";
sev.className = "text-" + (SEV_COLOR[severity] || "light-grey") + " font-bold";
sev.textContent = SEV_LABEL[severity];
msg.appendChild(sev);
msg.appendChild(document.createTextNode(" "));
@@ -60,7 +60,7 @@
// Title is always in the default text color (white). Severity is
// communicated by the coloured label tag, not by tinting the title.
const msgText = document.createElement("span");
msgText.className = "textlight-grey";
msgText.className = "text-light-grey";
msgText.textContent = body || "";
msg.appendChild(msgText);
row.appendChild(msg);