Added basic support for comments, for now mainly viewing comments from database (no submission forms yet). Added first simple wikitext filter (render wikitext content as xhtml). Ensure response content type is text/html with utf-8 charset.
18 lines
319 B
SCSS
18 lines
319 B
SCSS
div.comments-box {
|
|
div.title {
|
|
font-size: x-large;
|
|
}
|
|
ul.comments {
|
|
border-top: solid 1px #eee;
|
|
padding: 0 0 0 20px;
|
|
border-left: solid 5px #eee;
|
|
list-style-type: none;
|
|
li.comment {
|
|
border-bottom: solid 1px #eee;
|
|
&>span.author { font-weight: bold; }
|
|
&>span.info { font-style: italic; }
|
|
}
|
|
}
|
|
|
|
}
|