Mercurial > p > roundup > code
changeset 6767:075555472536
Handle viewport overflow for pre and long paths/url's.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 10 Jul 2022 22:45:54 -0400 |
| parents | c27fc7f499c7 |
| children | 15238a434368 |
| files | website/www/_static/style.css |
| diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/website/www/_static/style.css Sun Jul 10 22:27:17 2022 -0400 +++ b/website/www/_static/style.css Sun Jul 10 22:45:54 2022 -0400 @@ -146,9 +146,14 @@ float: none;} body > .navigation li > ul > li { padding-block: 1em; /* move links away from each other */ } -#roundup-issue-tracker .note { float: none; } +#roundup-issue-tracker .note { float: none; /* download box */} body > .footer { margin-inline-start: unset; } /* changes for content */ + /* stop paths and things from overflowing the viewport. */ +div.content { overflow-wrap: break-word; } +/* add spaces around items in TOC to make hitting the links easier */ #contents ul.simple li { padding-block: .5em; } +/* make examples with long lines scrollable */ +div.highlight pre { overflow: auto;} }
