diff --git a/static/style.css b/static/style.css index 7fcb311..c1aaab5 100644 --- a/static/style.css +++ b/static/style.css @@ -61,6 +61,12 @@ div#sources-container { border: 1px solid #BBB; } +div#sources-title { + margin-bottom: -5px; + text-align: center; + font-weight: bold; +} + div#cv-additional { padding-bottom: 5px; display: none; @@ -88,6 +94,10 @@ table#cv-result-sources th { text-align: left; } +table#cv-result-sources th:nth-child(2) { + padding-right: 4px; +} + table#cv-result-sources tr:nth-child(even) { background-color: #E0E0E0; } @@ -98,6 +108,10 @@ table#cv-chain-table { border-spacing: 10px 0; } +tr#source-row-selected { + background-color: #CFCFCF; +} + td#head-settings { text-align: right; } diff --git a/templates/index.mako b/templates/index.mako index 1694d6a..9206766 100644 --- a/templates/index.mako +++ b/templates/index.mako @@ -165,6 +165,7 @@ <% skips = False %> % if query.action == "search":
+
Checked Sources
@@ -172,7 +173,7 @@ % for i, source in enumerate(result.sources): - = 10 else ""}> + = 10 else 'id="source-row-selected"' if i == 0 else ""}>
URLCompare
${source.url | h} % if source.skipped: