--
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user