Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added new CSS class forumPosts to the containing the list of posts
on the /forum page so that skins can target elements of this list
differently than others. One immediate use for this is styling read
threads differently via a:visited styling. Currently, only one of the
stock skins ships with an unconditional a:visited change, so that all
links show in the same color regardless of their state. That's fine in
most areas of the UI, but in the forum, a skin developer may want
something special, so we need a way to mark them differently. This
was already using the broadly-used "fileage" style, but we don't
want changes to a:visited and such to affect all other users of fileage,
so we need a unique style to this page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
77782490334646c4a68e0c90e6311685 |
User & Date: | wyoung 2018-08-25 16:06:29.284 |
Context
2018-08-25
| ||
17:24 | Merged forum-skin-links branch to trunk. ... (check-in: 91c2b1b6 user: wyoung tags: trunk) | |
16:06 |
Added new CSS class forumPosts to the containing the list of posts
on the /forum page so that skins can target elements of this list
differently than others. One immediate use for this is styling read
threads differently via a:visited styling. Currently, only one of the
stock skins ships with an unconditional a:visited change, so that all
links show in the same color regardless of their state. That's fine in
most areas of the UI, but in the forum, a skin developer may want
something special, so we need a way to mark them differently. This
...
(check-in: 77782490 user: wyoung tags: trunk)
was already using the broadly-used "fileage" style, but we don't
want changes to a:visited and such to affect all other users of fileage,
so we need a unique style to this page. | |
2018-08-23
| ||
16:02 | Do not try to run backoffice if not connected to a valid repository. ... (check-in: 3f5b2549 user: drh tags: trunk) | |
Changes
Changes to src/forum.c.
︙ | ︙ | |||
988 989 990 991 992 993 994 | const char *zTitle = db_column_text(&q, 4); if( iCnt==0 ){ if( iOfst>0 ){ @ <h1>Threads at least %s(zAge) old</h1> }else{ @ <h1>Most recent threads</h1> } | | | 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 | const char *zTitle = db_column_text(&q, 4); if( iCnt==0 ){ if( iOfst>0 ){ @ <h1>Threads at least %s(zAge) old</h1> }else{ @ <h1>Most recent threads</h1> } @ <div class='forumPosts fileage'><table width="100%%"> if( iOfst>0 ){ if( iOfst>iLimit ){ @ <tr><td colspan="3">\ @ %z(href("%R/forum?x=%d&n=%d",iOfst-iLimit,iLimit))\ @ ↑ Newer...</a></td></tr> }else{ @ <tr><td colspan="3">%z(href("%R/forum?n=%d",iLimit))\ |
︙ | ︙ |