nodebb-theme-harmony 1.1.35 → 1.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/templates/category.tpl
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="d-flex flex-column gap-2">
|
|
3
3
|
<div class="d-flex gap-2 align-items-center mb-1 {{{ if config.theme.centerHeaderElements }}}justify-content-center{{{ end }}}">
|
|
4
4
|
{buildCategoryIcon(@value, "40px", "rounded-1 flex-shrink-0")}
|
|
5
|
-
<
|
|
5
|
+
<h1 class="tracking-tight fs-2 fw-semibold mb-0 text-center">{./name}</h1>
|
|
6
6
|
</div>
|
|
7
7
|
<div class="d-flex flex-wrap gap-2 {{{ if config.theme.centerHeaderElements }}}justify-content-center{{{ end }}}">
|
|
8
8
|
<span class="badge text-body border border-gray-300 stats text-xs">
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
{{{ if messages.parent }}}
|
|
4
4
|
<div class="d-flex ms-4 mb-2 align-items-center">
|
|
5
|
-
<div component="chat/message/parent" data-parent-mid="{messages.parent.mid}" data-uid="{messages.parent.fromuid}" class="btn-ghost-sm align-items-start flex-row">
|
|
5
|
+
<div component="chat/message/parent" data-parent-mid="{messages.parent.mid}" data-uid="{messages.parent.fromuid}" class="btn-ghost-sm align-items-start flex-row text-truncate">
|
|
6
6
|
<div class="d-flex gap-2 text-sm">
|
|
7
7
|
<div><i class="fa fa-sm fa-reply opacity-50"></i></div>
|
|
8
8
|
<div class="d-flex flex-nowrap gap-1 align-items-center">
|
package/templates/topic.tpl
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
<div class="d-flex flex-column gap-3" itemid="{url}" itemscope itemtype="https://schema.org/DiscussionForumPosting">
|
|
10
10
|
<div class="d-flex flex-wrap">
|
|
11
11
|
<div class="d-flex flex-column gap-3 flex-grow-1">
|
|
12
|
-
<
|
|
12
|
+
<h1 component="post/header" class="tracking-tight fw-semibold fs-3 mb-0 text-break {{{ if config.theme.centerHeaderElements }}}text-center{{{ end }}}" itemprop="headline">
|
|
13
13
|
<span class="topic-title" component="topic/title">{title}</span>
|
|
14
|
-
</
|
|
14
|
+
</h1>
|
|
15
15
|
|
|
16
16
|
<div class="topic-info d-flex gap-2 align-items-center flex-wrap {{{ if config.theme.centerHeaderElements }}}justify-content-center{{{ end }}}">
|
|
17
17
|
<span component="topic/labels" class="d-flex gap-2 {{{ if (!scheduled && (!pinned && (!locked && (!oldCid && !icons.length)))) }}}hidden{{{ end }}}">
|