1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 07:30:10 +01:00

[#184] Added new files.

This commit is contained in:
unknown 2014-10-18 19:57:51 -05:00
parent ba0a874b27
commit 6850301595
3 changed files with 65 additions and 0 deletions

51
stylesheets/mod/mod.css Normal file
View File

@ -0,0 +1,51 @@
.mod-reports {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.mod-report {
border: none;
border-bottom: 1px solid #B7C5D9;
clear: left;
margin: 0 0 0.5em 0;
padding: 0 0 0.5em 0;
}
.mod-report:last-child {
border-bottom: none;
}
.report-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.report-item {
display: inline-block;
margin: 0;
padding: 0;
}
.report-item .report {
background: #D6DAF0;
margin: 0.2em 4px;
padding: 0.2em 0.3em 0.5em 0.6em;
border-width: 1px;
border-style: none solid solid none;
border-color: #B7C5D9;
display: inline-block;
max-width: 94% !important;
}
.report-content div.post.reply,
.report-content div.thread {
background: #FFC4C4;
margin: 0.2em 4px;
padding: 0.2em 0.3em 0.5em 0.6em;
border-width: 1px;
border-style: none solid solid none;
border-color: #F88;
display: inline-block;
max-width: 94% !important;
}

View File

@ -0,0 +1 @@
<link rel="stylesheet" media="screen" href="{{ config.uri_stylesheets }}mod/mod.css" />

View File

@ -0,0 +1,13 @@
<li class="mod-report">
<div class="report-details">
<h2>{{ report_title }}</h2>
</div>
<div class="report-content">
{{ content_html }}
</div>
<ul class="report-list">
{{ reports_html }}
</ul>
</li>