mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +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"
|
ET.SubElement(body, "h1").text = "irctest dashboard"
|
||||||
|
|
||||||
dl = ET.SubElement(body, "dl")
|
dl = ET.SubElement(body, "dl")
|
||||||
|
dl.set("class", "module-index")
|
||||||
|
|
||||||
for (module_name, file_name) in sorted(pages):
|
for (module_name, file_name) in sorted(pages):
|
||||||
module = importlib.import_module(module_name)
|
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 */
|
/* Only 1px solid border between cells */
|
||||||
table.test-matrix {
|
table.test-matrix {
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
|
Reference in New Issue
Block a user