nodebb-theme-harmony 2.1.35 → 2.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
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
<div class="stat">
|
|
59
59
|
<div class="align-items-center justify-content-center card card-header p-3 border-0 rounded-1 h-100 gap-2">
|
|
60
60
|
<span class="stat-label text-xs fw-semibold"><i class="text-muted fa-solid fa-envelope"></i> <span>[[user:email]]</span> {{{ if emailHidden}}}<span class="text-lowercase">([[global:hidden]])</span>{{{ end }}}</span>
|
|
61
|
-
<span class="text-
|
|
61
|
+
<span class="text-center text-break w-100 px-2 ff-secondary">{email}</span>
|
|
62
62
|
</div>
|
|
63
63
|
</div>
|
|
64
64
|
{{{ end }}}
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
<div class="align-items-center justify-content-center card card-header p-3 border-0 rounded-1 h-100 gap-2">
|
|
79
79
|
<span class="stat-label text-xs fw-semibold"><span><i class="text-muted {./icon}"></i> {./name}</span></span>
|
|
80
80
|
{{{ if (./type == "input-link") }}}
|
|
81
|
-
<a class="text-
|
|
81
|
+
<a class="text-center text-break w-100 px-2 ff-secondary text-underline text-reset" href="{./value}" rel="nofollow noreferrer">{./linkValue}</a>
|
|
82
82
|
{{{ else }}}
|
|
83
83
|
<span class="text-center {{{ if (./type == "input-number") }}}fs-2{{{else }}}fs-6{{{ end }}} ff-secondary">{./value}</span>
|
|
84
84
|
{{{ end }}}
|
|
@@ -5,11 +5,7 @@
|
|
|
5
5
|
<!-- IMPORT partials/topic/mark-unread.tpl -->
|
|
6
6
|
<!-- IMPORT partials/topic/watch.tpl -->
|
|
7
7
|
<!-- IMPORT partials/topic/sort.tpl -->
|
|
8
|
-
|
|
9
|
-
<button component="topic/crosspost" title="[[topic:crosspost-topic]]" class="btn btn-ghost btn-sm ff-secondary d-flex gap-2 align-items-center dropdown-toggle text-truncate">
|
|
10
|
-
<i class="fa fa-fw fa-square-arrow-up-right text-primary"></i>
|
|
11
|
-
</button>
|
|
12
|
-
{{{ end }}}
|
|
8
|
+
<!-- IMPORT partials/topic/crosspost.tpl -->
|
|
13
9
|
<!-- IMPORT partials/topic/tools.tpl -->
|
|
14
10
|
|
|
15
11
|
{{{ if (!feeds:disableRSS && rssFeedUrl) }}}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{{{ if loggedIn }}}
|
|
2
|
+
<button component="topic/crosspost" title="[[topic:crosspost-topic]]" class="btn btn-ghost btn-sm ff-secondary d-flex gap-2 align-items-center text-truncate">
|
|
3
|
+
<i class="fa fa-fw fa-square-arrow-up-right text-primary"></i>
|
|
4
|
+
<span class="d-none d-md-inline fw-semibold text-truncate text-nowrap">[[topic:thread-tools.crosspost]]</span>
|
|
5
|
+
</button>
|
|
6
|
+
{{{ end }}}
|
package/templates/topic.tpl
CHANGED
|
@@ -110,12 +110,7 @@
|
|
|
110
110
|
<!-- IMPORT partials/topic/mark-unread.tpl -->
|
|
111
111
|
<!-- IMPORT partials/topic/watch.tpl -->
|
|
112
112
|
<!-- IMPORT partials/topic/sort.tpl -->
|
|
113
|
-
|
|
114
|
-
<button component="topic/crosspost" class="btn btn-ghost btn-sm ff-secondary d-flex gap-2 align-items-center text-truncate">
|
|
115
|
-
<i class="fa fa-fw fa-square-arrow-up-right text-primary"></i>
|
|
116
|
-
<span class="d-none d-md-inline fw-semibold text-truncate text-nowrap">[[topic:thread-tools.crosspost]]</span>
|
|
117
|
-
</button>
|
|
118
|
-
{{{ end }}}
|
|
113
|
+
<!-- IMPORT partials/topic/crosspost.tpl -->
|
|
119
114
|
<!-- IMPORT partials/topic/tools.tpl -->
|
|
120
115
|
</div>
|
|
121
116
|
{{{ end }}}
|