fix implicit arg wrapping

main
Max Taldykin 2023-03-04 13:36:49 +04:00 committed by Henrik Böving
parent 5ab6766eb1
commit 9220cd74b1
1 changed files with 7 additions and 1 deletions

View File

@ -335,6 +335,12 @@ nav {
overflow-wrap: break-word; overflow-wrap: break-word;
} }
/* Add a linebreak after a declaration name. */
.decl_name::after {
content: "\A";
white-space: pre;
}
.nav_link { .nav_link {
overflow-wrap: break-word; overflow-wrap: break-word;
} }
@ -474,7 +480,7 @@ main h2, main h3, main h4, main h5, main h6 {
.implicits, .impl_arg { .implicits, .impl_arg {
color: black; color: black;
white-space: nowrap; white-space: normal;
} }
.decl_kind, .decl_name, .decl_extends { .decl_kind, .decl_name, .decl_extends {