diff --git a/archivebox/templates/admin/progress_monitor.html b/archivebox/templates/admin/progress_monitor.html index 5d9aa3eb..bb411c59 100644 --- a/archivebox/templates/admin/progress_monitor.html +++ b/archivebox/templates/admin/progress_monitor.html @@ -205,6 +205,12 @@ #progress-monitor a.crawl-header-link:visited { color: inherit; } + #progress-monitor a.crawl-header-link:link, + #progress-monitor a.crawl-header-link:visited, + #progress-monitor a.crawl-header-link:hover, + #progress-monitor a.crawl-header-link:active { + text-decoration: none !important; + } #progress-monitor .crawl-info { flex: 1; min-width: 0; @@ -216,11 +222,6 @@ overflow: hidden; text-overflow: ellipsis; } - #progress-monitor .crawl-source { - color: #58a6ff; - font-weight: 500; - margin-left: 5px; - } #progress-monitor .crawl-badges { display: flex; flex-wrap: wrap; @@ -272,6 +273,12 @@ background: rgba(31, 111, 235, 0.16); border-color: rgba(31, 111, 235, 0.28); } + #progress-monitor .crawl-badge.source { + max-width: 340px; + color: #58a6ff; + background: rgba(88, 166, 255, 0.10); + border-color: rgba(88, 166, 255, 0.20); + } #progress-monitor .crawl-stats { display: flex; gap: 6px; @@ -1007,6 +1014,7 @@ ? `${crawl.total_snapshots} snapshot${(crawl.total_snapshots || 0) === 1 ? '' : 's'}` : ((crawl.urls_count || 0) > 0 ? `${crawl.urls_count} URL${(crawl.urls_count || 0) === 1 ? '' : 's'}` : 'no URLs'); const crawlBadges = [ + sourceShort ? `source${escapeHtml(sourceShort)}` : '', `persona${escapeHtml(crawl.persona || 'Default')}`, `depth${crawl.max_depth || 0}`, `urls${escapeHtml(maxUrlsText)}`, @@ -1027,7 +1035,7 @@