diff --git a/app/templates/common/icons.html b/app/templates/common/icons.html index 257a713..699c3d9 100644 --- a/app/templates/common/icons.html +++ b/app/templates/common/icons.html @@ -3,21 +3,21 @@ {%- endmacro -%} {%- macro icn_warn(width=48) -%} -info +warning {%- endmacro -%} {%- macro icn_error(width=48) -%} -info +error {%- endmacro -%} {%- macro icn_bookmark(width=16) -%} -info +bookmark {%- endmacro -%} {%- macro icn_locked(width=16) -%} -info +lock {%- endmacro -%} {%- macro icn_stickied(width=16) -%} -info +paper held by pushpin {%- endmacro -%} diff --git a/app/templates/topics/topic.html b/app/templates/topics/topic.html index 204c02a..5fda2fe 100644 --- a/app/templates/topics/topic.html +++ b/app/templates/topics/topic.html @@ -51,13 +51,14 @@
{{thread.title}} + {%- if thread.posts_count / 10 > 1 -%} {{pager(0, (((thread.posts_count / 10) | round(0, 'ceil') )| int), 'flex-last', url=url_for('threads.thread_by_id', thread_id=thread.id))}} {%- endif -%} diff --git a/data/static/css/style.css b/data/static/css/style.css index e44a408..3a58b58 100644 --- a/data/static/css/style.css +++ b/data/static/css/style.css @@ -444,7 +444,7 @@ ul.horizontal, ol.horizontal { display: flex; gap: var(--base-padding); justify-content: start; - align-items: end; + align-items: center; flex-wrap: wrap; }