nodebb-theme-harmony 1.2.7 → 1.2.9
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
|
@@ -20,17 +20,10 @@
|
|
|
20
20
|
{{{ each ./children }}}
|
|
21
21
|
{{{ if !./isSection }}}
|
|
22
22
|
<span class="category-children-item small">
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<
|
|
26
|
-
<a href="{./link}" class="text-reset fw-semibold">{./name}</a>
|
|
23
|
+
<div class="d-flex align-items-center gap-1">
|
|
24
|
+
<i class="fa fa-fw fa-caret-right text-primary"></i>
|
|
25
|
+
<a href="{{{ if ./link }}}{./link}{{{ else }}}{config.relative_path}/category/{./slug}{{{ end }}}" class="text-reset fw-semibold">{./name}</a>
|
|
27
26
|
</div>
|
|
28
|
-
{{{ else }}}
|
|
29
|
-
<div class="d-flex align-items-start gap-1">
|
|
30
|
-
<i class="fa fa-fw fa-caret-right text-primary mt-1"></i>
|
|
31
|
-
<a href="{config.relative_path}/category/{./slug}" class="text-reset fw-semibold">{./name}</a>
|
|
32
|
-
</div>
|
|
33
|
-
{{{ end }}}
|
|
34
27
|
</span>
|
|
35
28
|
{{{ end }}}
|
|
36
29
|
{{{ end }}}
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
<a component="post/quote" href="#" class="btn-ghost-sm user-select-none {{{ if !privileges.topics:reply }}}hidden{{{ end }}}" title="[[topic:quote]]"><i class="fa fa-fw fa-quote-right text-primary"></i></a>
|
|
111
111
|
|
|
112
112
|
{{{ if !reputation:disabled }}}
|
|
113
|
-
<div class="d-flex votes align-items-
|
|
113
|
+
<div class="d-flex votes align-items-center">
|
|
114
114
|
<a component="post/upvote" href="#" class="btn-ghost-sm {{{ if posts.upvoted }}}upvoted{{{ end }}}">
|
|
115
115
|
<i class="fa fa-fw fa-chevron-up text-primary"></i>
|
|
116
116
|
</a>
|