Format the index as columns when possible

To avoid wasting space.
This commit is contained in:
2022-04-10 15:15:51 +02:00
parent e92aee012b
commit 09c31f428a
2 changed files with 5 additions and 0 deletions

View File

@ -277,6 +277,7 @@ def write_html_index(output_dir: Path, pages: List[Tuple[str, str]]) -> None:
ET.SubElement(body, "h1").text = "irctest dashboard"
dl = ET.SubElement(body, "dl")
dl.set("class", "module-index")
for (module_name, file_name) in sorted(pages):
module = importlib.import_module(module_name)

View File

@ -8,6 +8,10 @@
}
}
dl.module-index {
column-width: 40em; /* Magic constant for 2 columns on average laptop/desktop */
}
/* Only 1px solid border between cells */
table.test-matrix {
border-spacing: 0;