mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Format the index as columns when possible
To avoid wasting space.
This commit is contained in:
@ -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)
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user