Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the default CSS for the "columns" class to avoid breaking column breaks within a single <li> element. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
51da396650d8170abb04229ce0ddb2d2 |
| User & Date: | drh 2018-09-20 13:35:12.668 |
References
|
2018-10-11
| ||
| 16:36 | 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. ... (check-in: 5bd8d6fe86 user: florian tags: js-hamburger-menu) | |
Context
|
2018-09-20
| ||
| 13:38 | Update the built-in SQLite to version 3.25.1. ... (check-in: c5abb962aa user: drh tags: trunk) | |
| 13:35 | Fix the default CSS for the "columns" class to avoid breaking column breaks within a single <li> element. ... (check-in: 51da396650 user: drh tags: trunk) | |
| 11:21 | Fixed the panel.style.hasOwnProperty() test in the default skin's js.txt so that it will work on IE8 and below. See code comment for rationale. ... (check-in: e54095f9af user: wyoung tags: trunk) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
193 194 195 196 197 198 199 |
div.columns > ul {
margin: 0;
padding: 0 0 0 1em;
}
div.columns > ul li:first-child {
margin-top:0px;
}
| | | 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
div.columns > ul {
margin: 0;
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 {
|
| ︙ | ︙ |