Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Prevent ridicuously wide forum posts display with the "vfx" query parameter on /timeline. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
da7d816201df6be54cb024dae649408e |
| User & Date: | drh 2020-04-06 15:54:45.627 |
Context
|
2020-04-07
| ||
| 12:27 | Initial version of css-tricks.md, as requested in [https://fossil-scm.org/forum/forumpost/eb04fd28b5|forumpost/eb04fd28b5]. ... (check-in: 5900530223 user: stephan tags: trunk) | |
|
2020-04-06
| ||
| 15:54 | Prevent ridicuously wide forum posts display with the "vfx" query parameter on /timeline. ... (check-in: da7d816201 user: drh tags: trunk) | |
| 15:44 | Futher viewing enhancements for larger forum posts. The default CSS now limits the maximum height to 25em (because that amount fits nicely on a single screen on an iPhone) and all messages have a "source" link which shows the fully expanded text without scrollbars. ... (check-in: 46dd696302 user: drh tags: trunk) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
743 744 745 746 747 748 749 750 751 752 753 754 755 756 |
padding-left: 1ex;
padding-right: 1ex;
}
div.forumTimeline {
border: 1px solid black;
padding-left: 1ex;
padding-right: 1ex;
}
div.forumTimeline code {
white-space: pre-wrap;
}
div.markdown code {
white-space: pre-wrap;
}
| > > | 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 |
padding-left: 1ex;
padding-right: 1ex;
}
div.forumTimeline {
border: 1px solid black;
padding-left: 1ex;
padding-right: 1ex;
max-width: 50em;
overflow: auto;
}
div.forumTimeline code {
white-space: pre-wrap;
}
div.markdown code {
white-space: pre-wrap;
}
|
| ︙ | ︙ |