Differences From Artifact [163b89e340]:
- File src/default_css.txt — part of check-in [51da396650] at 2018-09-20 13:35:12 on branch trunk — Fix the default CSS for the "columns" class to avoid breaking column breaks within a single <li> element. (user: drh size: 12728) [more...]
To Artifact [cf561c482b]:
- File src/default_css.txt — part of check-in [5bd8d6fe86] at 2018-10-11 16:36:02 on branch js-hamburger-menu — Extend the CSS fixes to avoid column breaks inside list items, [dc5e06ff71] and [51da396650], as Firefox classifies 'break-inside' as an 'invalid property name'. This affects the sitemap and the hamburger drop-down menu. (user: florian size: 12756)
| ︙ | ︙ | |||
195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
padding: 0 0 0 1em;
}
div.columns > ul li:first-child {
margin-top:0px;
}
.columns li {
break-inside: avoid;
}
.filetree {
margin: 1em 0;
line-height: 1.5;
}
.filetree > ul {
display: inline-block;
| > | 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
padding: 0 0 0 1em;
}
div.columns > ul li:first-child {
margin-top:0px;
}
.columns li {
break-inside: avoid;
page-break-inside: avoid;
}
.filetree {
margin: 1em 0;
line-height: 1.5;
}
.filetree > ul {
display: inline-block;
|
| ︙ | ︙ |