diff --git a/src/network/html/FilesPage.html b/src/network/html/FilesPage.html index b893ac21..509c11b8 100644 --- a/src/network/html/FilesPage.html +++ b/src/network/html/FilesPage.html @@ -212,12 +212,14 @@ .file-icon { margin-right: 8px; } - .folder-link { + .folder-link, + .file-link { color: var(--accent-color); text-decoration: none; cursor: pointer; } - .folder-link:hover { + .folder-link:hover, + .file-link:hover { color: var(--accent-hover-color); text-decoration: underline; } @@ -872,7 +874,8 @@ // Checkbox cell + file row fileTableContent += ``; fileTableContent += ``; - fileTableContent += `${file.isEpub ? '📗' : '📄'}${escapeHtml(file.name)}`; + fileTableContent += `${file.isEpub ? '📗' : '📄'}`; + fileTableContent += `${escapeHtml(file.name)}`; if (file.isEpub) fileTableContent += 'EPUB'; fileTableContent += ''; fileTableContent += `${file.name.split('.').pop().toUpperCase()}`;