Differences From Artifact [08d66fc0a5]:
- File src/default_css.txt — part of check-in [192c809a31] at 2020-03-16 19:33:14 on branch trunk — Minor default CSS changes for improved rendering of code snippets with long lines in the forum. (user: drh size: 15046) [more...]
To Artifact [eefe7fbd5f]:
- File src/default_css.txt — part of check-in [421955cdf7] at 2020-04-06 15:03:37 on branch trunk — Limit the displayed length of a forum-post to 50em using CSS. Longer posts scroll. (user: drh size: 15106)
| ︙ | |||
755 756 757 758 759 760 761 762 763 764 765 766 767 768 | 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 | + + + + |
white-space: pre-wrap;
}
div.forumHier, div.forumTime {
border: 1px solid black;
padding-left: 1ex;
padding-right: 1ex;
margin-top: 1ex;
}
div.forumPostBody {
max-height: 50em;
overflow: auto;
}
div.forumSel {
background-color: #cef;
}
div.forumObs {
color: #bbb;
}
|
| ︙ |