Fossil

Check-in [29f7da9318]
Login

Check-in [29f7da9318]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Change the height at which scrolling kicks in for forum posts from 40em to 100em. This is an experiment.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 29f7da931863784a257c727d73d0e22aa5b196b14c93c93b96ff3880a7c993a3
User & Date: drh 2020-07-09 14:53:00.352
Context
2020-07-09
17:12
Do not short-circuit a /timeline request using ETAGS if the bisect parameter is used. ... (check-in: 4acb9cd276 user: drh tags: trunk)
15:35
Very rough proof-of-concept for a pure-CSS expand/collapse option for forum posts. Demonstrates the capability but is far from polished enough to bring online. ... (check-in: be157e46f0 user: stephan tags: forum-expand-poc)
14:53
Change the height at which scrolling kicks in for forum posts from 40em to 100em. This is an experiment. ... (check-in: 29f7da9318 user: drh tags: trunk)
12:53
Refactored [23e138e808] a bit to move some new json-only code from main.c to json.c. ... (check-in: b2ac218325 user: stephan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/default.css.
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
div.forumHier, div.forumTime {
  border: 1px solid black;
  padding-left: 1ex;
  padding-right: 1ex;
  margin-top: 1ex;
}
div.forumPostBody {
  max-height: 40em;
  overflow: auto;
}
div.forumSel {
  background-color: #cef;
}
div.forumObs {
  color: #bbb;







|







763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
div.forumHier, div.forumTime {
  border: 1px solid black;
  padding-left: 1ex;
  padding-right: 1ex;
  margin-top: 1ex;
}
div.forumPostBody {
  max-height: 100em;
  overflow: auto;
}
div.forumSel {
  background-color: #cef;
}
div.forumObs {
  color: #bbb;