Differences From Artifact [af97f1e7fe]:
- File src/default_css.txt — part of check-in [c429bb7917] at 2018-09-01 14:52:39 on branch trunk — Add 1em of left padding to multi-column unordered lists. This extra padding is necessary to get Chrome and Edge to display the bullets on second and subsequent columns. (user: drh size: 12689)
To Artifact [c07aa2aa17]:
- File src/default_css.txt — part of check-in [dc5e06ff71] at 2018-09-05 15:16:17 on branch trunk — Avoid column breaks inside a top-level bullet in the /sitemap. (user: drh size: 12731) [more...]
| ︙ | ︙ | |||
193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
div.columns > ul {
margin: 0;
padding: 0 0 0 1em;
}
div.columns > ul li:first-child {
margin-top:0px;
}
.filetree {
margin: 1em 0;
line-height: 1.5;
}
.filetree > ul {
display: inline-block;
}
| > > > | 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
div.columns > ul {
margin: 0;
padding: 0 0 0 1em;
}
div.columns > ul li:first-child {
margin-top:0px;
}
div.columns li {
break-inside: avoid;
}
.filetree {
margin: 1em 0;
line-height: 1.5;
}
.filetree > ul {
display: inline-block;
}
|
| ︙ | ︙ |