Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Minor CSS tweaks to closed forum posts. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | forumpost-locking |
| Files: | files | file ages | folders |
| SHA3-256: |
3078ff46eebfde97059eb5e41ffc08ce |
| User & Date: | stephan 2023-02-22 06:09:02.936 |
Context
|
2023-02-24
| ||
| 23:38 | In /admin_log, add rowid DESC to the ORDER BY so that entries with the same timestamp predictably sort newest-first. ... (check-in: 914c6b5a0e user: stephan tags: forumpost-locking) | |
|
2023-02-22
| ||
| 06:09 | Minor CSS tweaks to closed forum posts. ... (check-in: 3078ff46ee user: stephan tags: forumpost-locking) | |
| 04:46 | Rework forumpost closure to always apply to the first artifact in an edit chain to enable consistent behavior across the whole chain and responses to arbitrary versions within that chain. Add rudimentary UI elements for closing/re-opening posts, but their layout needs to be revisited (noting that they need to be in a separate form from the main editor so that closing/re-opening introduces only a smalll control artifact instead of a whole forumpost artifact). ... (check-in: cc6ca4e110 user: stephan tags: forumpost-locking) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
898 899 900 901 902 903 904 905 906 |
padding-left: 1ex;
padding-right: 1ex;
margin-top: 1ex;
display: flex;
flex-direction: column;
}
div.forumClosed {
opacity: 0.7;
}
| > > | < < | 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 |
padding-left: 1ex;
padding-right: 1ex;
margin-top: 1ex;
display: flex;
flex-direction: column;
}
div.forumClosed {
}
div.forumClosed > .forumPostBody {
opacity: 0.7;
}
div.forumClosed > .forumPostHdr::before {
content: "[CLOSED] ";
}
/*div.forumClosed > div.forumPostBody {
filter: blur(5px);
}*/
div.forumpost-closed-warning {
margin-top: 1em;
margin-bottom: 1em;
|
| ︙ | ︙ |