Mercurial > p > roundup > code
diff website/www/_static/style.css @ 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 | d93b441ee778 |
| children | c645f51e9e8a |
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;} }
