902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
|
flex-direction: column;
}
div.forumClosed {
opacity: 0.7;
}
div.forumClosed > *:first-child::before {
content: "[CLOSED] ";
color: red;
opacity: 0.7;
}
/*div.forumClosed > div.forumPostBody {
filter: blur(5px);
}*/
.forum div > form {
margin: 0.5em 0;
}
.forum-post-collapser {
/* Common style for the bottom-of-post and right-of-post
expand/collapse widgets. */
font-size: 0.8em;
|
|
>
>
>
>
>
>
>
>
>
>
>
>
|
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
|
flex-direction: column;
}
div.forumClosed {
opacity: 0.7;
}
div.forumClosed > *:first-child::before {
content: "[CLOSED] ";
color: darkred;
opacity: 0.7;
}
/*div.forumClosed > div.forumPostBody {
filter: blur(5px);
}*/
div.forumpost-closed-warning {
margin-top: 1em;
margin-bottom: 1em;
border-style: solid;
padding: 0.25em 0.5em;
background: yellow;
color: darkred;
font-weight: bold;
}
div.forumpost-closed-warning input[type=submit] {
padding: 0.25em;
}
.forum div > form {
margin: 0.5em 0;
}
.forum-post-collapser {
/* Common style for the bottom-of-post and right-of-post
expand/collapse widgets. */
font-size: 0.8em;
|