Compare commits
2 Commits
844499383c
...
2d3eef6531
| Author | SHA1 | Date | |
|---|---|---|---|
|
2d3eef6531
|
|||
|
e874d41fbc
|
@@ -1,5 +1,5 @@
|
||||
{% from 'common/macros.html' import pager, timestamp, bookmark_button %}
|
||||
{% from 'common/icons.html' import icn_bookmark, icn_lock, icn_sticky %}
|
||||
{% from 'common/macros.html' import pager, timestamp %}
|
||||
{% from 'common/icons.html' import icn_lock, icn_sticky %}
|
||||
{% extends "base.html" %}
|
||||
{% block title %}browsing topic {{ topic['name'] }}{% endblock %}
|
||||
{% block content %}
|
||||
@@ -51,11 +51,6 @@
|
||||
Started by <a href="{{ url_for("users.page", username=thread['started_by']) }}">{{ thread['started_by'] }}</a> on {{ timestamp(thread['created_at']) }}
|
||||
</span>
|
||||
</span>
|
||||
<span>
|
||||
{% if active_user and not active_user.is_guest() -%}
|
||||
{{ bookmark_button(type="thread", id=thread.id) }}
|
||||
{%- endif %}
|
||||
</span>
|
||||
</span>
|
||||
<span>
|
||||
Latest post by <a href="{{ url_for("users.page", username=thread['latest_post_username']) }}">{{ thread['latest_post_username'] }}</a>
|
||||
|
||||
@@ -156,7 +156,7 @@ a:visited {
|
||||
|
||||
.post-content {
|
||||
grid-area: post-content;
|
||||
padding: 20px 20px 0 20px;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
|
||||
@@ -156,7 +156,7 @@ a:visited {
|
||||
|
||||
.post-content {
|
||||
grid-area: post-content;
|
||||
padding: 20px 20px 0 20px;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
|
||||
@@ -156,7 +156,7 @@ a:visited {
|
||||
|
||||
.post-content {
|
||||
grid-area: post-content;
|
||||
padding: 12px 12px 0 12px;
|
||||
padding: 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
|
||||
@@ -294,7 +294,7 @@ $post_info_background: $MAIN_BG !default;
|
||||
background-color: $post_info_background;
|
||||
}
|
||||
|
||||
$post_content_padding: $BIG_PADDING $BIG_PADDING $ZERO_PADDING $BIG_PADDING !default;
|
||||
$post_content_padding: $BIG_PADDING !default;
|
||||
$post_content_background: $ACCENT_COLOR !default;
|
||||
.post-content {
|
||||
grid-area: post-content;
|
||||
|
||||
Reference in New Issue
Block a user