767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
|
margin-top: 1ex;
}
div.forumHier, div.forumTime, div.forumHierRoot {
display: flex;
flex-direction: column;
}
div.forumPostBody {
max-height: 100em;
overflow: auto;
}
div.forumSel {
background-color: #cef;
}
div.forumObs {
color: #bbb;
|
|
>
>
>
|
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
|
margin-top: 1ex;
}
div.forumHier, div.forumTime, div.forumHierRoot {
display: flex;
flex-direction: column;
}
div.forumPostBody {
max-height: 20em /* Posts which overflow this value get an
Expand/Collapse toggle injected at page-load.
It's currently intentionally set low for
demonstration purposes. */;
overflow: auto;
}
div.forumSel {
background-color: #cef;
}
div.forumObs {
color: #bbb;
|
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
|
}
label.forum-post-collapser {
align-self: flex-start;
padding: 0.1em 0.5em;
border: 1px outset;
border-radius: 0.25em;
}
input[type=checkbox].forum-post-collapser:not(:checked) ~ div.forumPostBody {
max-height: 10em;
}
input[type=checkbox].forum-post-collapser:checked ~ div.forumPostBody {
max-height: 200em;
}
#capabilitySummary {
text-align: center;
}
#capabilitySummary td {
padding-left: 3ex;
|
<
<
<
|
|
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
|
}
label.forum-post-collapser {
align-self: flex-start;
padding: 0.1em 0.5em;
border: 1px outset;
border-radius: 0.25em;
}
input[type=checkbox].forum-post-collapser:checked ~ div.forumPostBody {
max-height: 10000em /* some "absurdly large" value */;
}
#capabilitySummary {
text-align: center;
}
#capabilitySummary td {
padding-left: 3ex;
|