Also improved some CSS and HTML aspects of the thread layout.
Signed-off-by: 8n-tech <8n-tech@users.noreply.github.com>
This commit is contained in:
parent
7a7574bdca
commit
6644ff666a
@ -468,20 +468,6 @@ hr {
|
|||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.boardlist {
|
|
||||||
color: #89A;
|
|
||||||
font-size: 9pt;
|
|
||||||
margin-top: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.boardlist.bottom {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.boardlist a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.report {
|
div.report {
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
@ -944,6 +930,78 @@ span.pln {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.clearfix {
|
||||||
|
display: block;
|
||||||
|
clear: both;
|
||||||
|
visibility: hidden;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
font-size: 0px;
|
||||||
|
line-height: 0px;
|
||||||
|
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: none;
|
||||||
|
height: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* === SPECIFIC PAGES & FEATURES === */
|
||||||
|
|
||||||
|
/* Board List */
|
||||||
|
div.boardlist {
|
||||||
|
margin-top: 3px;
|
||||||
|
|
||||||
|
color: #89A;
|
||||||
|
font-size: 9pt;
|
||||||
|
}
|
||||||
|
div.boardlist.bottom {
|
||||||
|
margin-top: 12px;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
div.boardlist a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Threads */
|
||||||
|
/* Thread Footer */
|
||||||
|
#thread-interactions {
|
||||||
|
margin: 8px 0;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
#thread-links {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#thread-links > a {
|
||||||
|
padding-left: none;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
#thread-quick-reply {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
right: 50%;
|
||||||
|
text-align: center;
|
||||||
|
width: 100px;
|
||||||
|
margin-left: -50px;
|
||||||
|
}
|
||||||
|
#thread_stats {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-moderation-fields {
|
||||||
|
float: right;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
#delete-fields {
|
||||||
|
}
|
||||||
|
#report-fields {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* threadwatcher */
|
/* threadwatcher */
|
||||||
|
|
||||||
#watchlist {
|
#watchlist {
|
||||||
|
@ -1,13 +1,16 @@
|
|||||||
{% if config.allow_delete %}
|
<div id="post-moderation-fields">
|
||||||
<div class="delete">
|
{% if config.allow_delete %}
|
||||||
{% trans %}Delete Post{% endtrans %} [<input title="Delete file only" type="checkbox" name="file" id="delete_file" />
|
<div id="delete-fields">
|
||||||
<label for="delete_file">{% trans %}File{% endtrans %}</label>] <label for="password">{% trans %}Password{% endtrans %}</label>
|
{% trans %}Delete Post{% endtrans %} [<input title="Delete file only" type="checkbox" name="file" id="delete_file" />
|
||||||
|
<label for="delete_file">{% trans %}File{% endtrans %}</label>] <label for="password">{% trans %}Password{% endtrans %}</label>
|
||||||
<input id="password" type="password" name="password" size="12" maxlength="18" />
|
<input id="password" type="password" name="password" size="12" maxlength="18" />
|
||||||
<input type="submit" name="delete" value="{% trans %}Delete{% endtrans %}" />
|
<input type="submit" name="delete" value="{% trans %}Delete{% endtrans %}" />
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="delete" style="clear:both">
|
|
||||||
<label for="reason">{% trans %}Reason{% endtrans %}</label>
|
<div id="report-fields">
|
||||||
|
<label for="reason">{% trans %}Reason{% endtrans %}</label>
|
||||||
<input id="reason" type="text" name="reason" size="20" maxlength="30" />
|
<input id="reason" type="text" name="reason" size="20" maxlength="30" />
|
||||||
<input type="submit" name="report" value="{% trans %}Report{% endtrans %}" />
|
<input type="submit" name="report" value="{% trans %}Report{% endtrans %}" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
@ -24,6 +24,7 @@
|
|||||||
<title>{{ board.url }} - {{ meta_subject }}</title>
|
<title>{{ board.url }} - {{ meta_subject }}</title>
|
||||||
</head>
|
</head>
|
||||||
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %}" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
|
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %}" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
|
||||||
|
<a name="top"></a>
|
||||||
{{ boardlist.top }}
|
{{ boardlist.top }}
|
||||||
{% if pm %}<div class="top_notice">You have <a href="?/PM/{{ pm.id }}">an unread PM</a>{% if pm.waiting > 0 %}, plus {{ pm.waiting }} more waiting{% endif %}.</div><hr />{% endif %}
|
{% if pm %}<div class="top_notice">You have <a href="?/PM/{{ pm.id }}">an unread PM</a>{% if pm.waiting > 0 %}, plus {{ pm.waiting }} more waiting{% endif %}.</div><hr />{% endif %}
|
||||||
{% if config.url_banner %}<img class="board_image" src="{{ config.url_banner }}" {% if config.banner_width or config.banner_height %}style="{% if config.banner_width %}width:{{ config.banner_width }}px{% endif %};{% if config.banner_width %}height:{{ config.banner_height }}px{% endif %}" {% endif %}alt="" />{% endif %}
|
{% if config.url_banner %}<img class="board_image" src="{{ config.url_banner }}" {% if config.banner_width or config.banner_height %}style="{% if config.banner_width %}width:{{ config.banner_width }}px{% endif %};{% if config.banner_width %}height:{{ config.banner_height }}px{% endif %}" {% endif %}alt="" />{% endif %}
|
||||||
@ -56,17 +57,27 @@
|
|||||||
<a href="#bottom" style="padding-left: 10px">[{% trans %}Go to bottom{% endtrans %}]</a>
|
<a href="#bottom" style="padding-left: 10px">[{% trans %}Go to bottom{% endtrans %}]</a>
|
||||||
<hr />
|
<hr />
|
||||||
<form name="postcontrols" action="{{ config.post_url }}" method="post">
|
<form name="postcontrols" action="{{ config.post_url }}" method="post">
|
||||||
<input type="hidden" name="board" value="{{ board.uri }}" />
|
<input type="hidden" name="board" value="{{ board.uri }}" />
|
||||||
{% if mod %}<input type="hidden" name="mod" value="1" />{% endif %}
|
{% if mod %}<input type="hidden" name="mod" value="1" />{% endif %}
|
||||||
{{ body }}
|
|
||||||
{% include 'report_delete.html' %}
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<span id="thread-links">
|
{{ body }}
|
||||||
<a id="thread-return" href="{{ return }}">[{% trans %}Return{% endtrans %}]</a>
|
|
||||||
<a id="thread-top" href="#" style="padding-left: 10px">[{% trans %}Go to top{% endtrans %}]</a>
|
<div id="thread-interactions">
|
||||||
<a id="thread-catalog" style="padding-left: 10px" href="{{ config.root }}{{ board.dir }}{{ config.catalog_link }}">[{% trans %}Catalog{% endtrans %}]</a>
|
<span id="thread-links">
|
||||||
</span>
|
<a id="thread-return" href="{{ return }}">[{% trans %}Return{% endtrans %}]</a>
|
||||||
|
<a id="thread-top" href="#top">[{% trans %}Go to top{% endtrans %}]</a>
|
||||||
|
<a id="thread-catalog" href="{{ config.root }}{{ board.dir }}{{ config.catalog_link }}">[{% trans %}Catalog{% endtrans %}]</a>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span id="thread-quick-reply">
|
||||||
|
<a id="link-quick-reply" href="#">[{% trans %}Post a Reply{% endtrans %}]</a>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
{% include 'report_delete.html' %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</form>
|
||||||
|
|
||||||
{{ boardlist.bottom }}
|
{{ boardlist.bottom }}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user