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 @@
-
Crawl #${escapeHtml(crawlShortId)} ${escapeHtml(startedDate)} started by ${escapeHtml(crawl.created_by || 'unknown')}${sourceShort ? `${escapeHtml(sourceShort)}` : ''}
+
Crawl #${escapeHtml(crawlShortId)} ${escapeHtml(startedDate)} started by ${escapeHtml(crawl.created_by || 'unknown')}
${crawlBadges}
diff --git a/etc/package.json b/etc/package.json index dd6c59ce..5a9ce873 100644 --- a/etc/package.json +++ b/etc/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.9.32rc13", + "version": "0.9.32rc14", "repository": "github:ArchiveBox/ArchiveBox", "license": "MIT", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index d464b10c..52be9411 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "archivebox" -version = "0.9.32rc13" +version = "0.9.32rc14" requires-python = ">=3.13" description = "Self-hosted internet archiving solution." authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]