This commit is contained in:
epoberezkin
2026-03-21 18:08:09 +00:00
parent 91408dd990
commit 1cfb4efe1b
2 changed files with 12 additions and 0 deletions
+9
View File
@@ -494,6 +494,15 @@ window.addEventListener('click',(e)=>{
color: magenta;
}
#directory .entry .small-text {
font-size: 0.8em;
color: #888;
}
.dark #directory .entry .small-text {
color: #999;
}
.dark #directory .entry .green {
color: #4DDA67;
}
+3
View File
@@ -433,6 +433,9 @@ function renderMarkdown(fts) {
case 'secret':
html += `<span class="secret">${escapeHtml(text)}</span>`;
break;
case 'small':
html += `<span class="small-text">${escapeHtml(text)}</span>`;
break;
case 'colored':
html += `<span class="${format.color}">${escapeHtml(text)}</span>`;
break;