nodebb-theme-harmony 1.1.34 → 1.1.36
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">
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!-- This partial intentionally left blank; overwritten by nodebb-plugin-reactions -->
|
|
@@ -34,9 +34,10 @@
|
|
|
34
34
|
<div component="chat/message/body" class="message-body ps-0 py-0 overflow-auto text-break">
|
|
35
35
|
{messages.content}
|
|
36
36
|
</div>
|
|
37
|
-
|
|
37
|
+
<!-- IMPORT partials/chats/reactions.tpl -->
|
|
38
38
|
<div component="chat/message/controls" class="position-relative">
|
|
39
39
|
<div class="btn-group border shadow-sm controls position-absolute bg-body hover-d-block end-0" style="bottom:1rem;">
|
|
40
|
+
<!-- IMPORT partials/chats/add-reaction.tpl -->
|
|
40
41
|
<button class="btn btn-sm btn-link" data-action="reply"><i class="fa fa-reply"></i></button>
|
|
41
42
|
{{{ if (!config.disableChatMessageEditing && messages.self) }}}
|
|
42
43
|
<button class="btn btn-sm btn-link" data-action="edit"><i class="fa fa-pencil"></i></button>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!-- This partial intentionally left blank; overwritten by nodebb-plugin-reactions -->
|
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 }}}">
|