nodebb-theme-harmony 1.0.0-beta.19 → 1.0.0-beta.20
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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div component="category/posts" class="ps-3">
|
|
5
5
|
<a class="background-link" href="{config.relative_path}/topic/{./topic.slug}{{{ if ./index }}}/{./index}{{{ end }}}"></a>
|
|
6
6
|
<p class="mb-0">
|
|
7
|
-
<a class="text-decoration-none" href="{config.relative_path}/user/{./user.userslug}">{buildAvatar(posts.user, "20px", true)}</a>
|
|
7
|
+
<a class="text-decoration-none" href="{config.relative_path}/user/{./user.userslug}">{buildAvatar(posts.user, "20px", true, "avatar-tooltip")}</a>
|
|
8
8
|
<a class="permalink text-muted" href="{config.relative_path}/topic/{./topic.slug}{{{ if ./index }}}/{./index}{{{ end }}}">
|
|
9
9
|
<span class="timeago text-xs" title="{../timestampISO}"></span>
|
|
10
10
|
</a>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<button type="button" class="btn-ghost-sm d-flex gap-2 align-items-baseline dropdown-toggle" data-bs-toggle="dropdown">
|
|
2
2
|
{{{ if selectedCategory }}}
|
|
3
3
|
<span class="category-item">
|
|
4
|
-
{buildCategoryIcon(selectedCategory, "
|
|
4
|
+
{buildCategoryIcon(selectedCategory, "18px", "rounded-circle")}
|
|
5
5
|
<span class="visible-md-inline visible-lg-inline fw-semibold">{selectedCategory.name}</span>
|
|
6
6
|
</span>
|
|
7
7
|
{{{ else }}}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="timeline-badge">
|
|
3
3
|
<i class="fa {{{ if ./icon }}}{./icon}{{{ else }}}fa-circle{{{ end }}} small"></i>
|
|
4
4
|
</div>
|
|
5
|
-
<span class="timeline-text small">
|
|
5
|
+
<span class="timeline-text small d-flex align-items-center gap-1">
|
|
6
6
|
{./text}
|
|
7
7
|
</span>
|
|
8
8
|
{{{ if privileges.isAdminOrMod }}}
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
<a component="post/reply-count" data-target-component="post/replies/container" href="#" class="d-flex gap-2 align-items-center mt-2 btn-outline border rounded-1 p-1 threaded-replies user-select-none float-start text-muted text-decoration-none {{{ if !posts.replies.count }}}hidden{{{ end }}}">
|
|
75
75
|
<span component="post/reply-count/avatars" class="avatars d-inline-flex gap-1 align-items-top {{{ if posts.replies.hasMore }}}hasMore{{{ end }}}">
|
|
76
76
|
{{{each posts.replies.users}}}
|
|
77
|
-
<span>{buildAvatar(posts.replies.users, "20px", true, "")}</span>
|
|
77
|
+
<span>{buildAvatar(posts.replies.users, "20px", true, "avatar-tooltip")}</span>
|
|
78
78
|
{{{end}}}
|
|
79
79
|
{{{ if posts.replies.hasMore}}}
|
|
80
80
|
<span><i class="fa fa-ellipsis"></i></span>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
{{{ if ./thumbs.length }}}
|
|
17
17
|
<img class="topic-thumb rounded-1" width="80" height="auto" src="{./thumbs.0.url}" class="not-responsive" />
|
|
18
18
|
{{{ else }}}
|
|
19
|
-
{buildAvatar(./user, "40px", true, "not-responsive")}
|
|
19
|
+
{buildAvatar(./user, "40px", true, "avatar-tooltip not-responsive")}
|
|
20
20
|
{{{ end }}}
|
|
21
21
|
</a>
|
|
22
22
|
</div>
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
{{{ else }}}
|
|
104
104
|
{{{ if ./teaser.pid }}}
|
|
105
105
|
<p class="ps-3 mb-0 lh-1">
|
|
106
|
-
<a href="{config.relative_path}/user/{./teaser.user.userslug}" class="text-decoration-none">{buildAvatar(./teaser.user, "18px", true, "not-responsive")}</a>
|
|
106
|
+
<a href="{config.relative_path}/user/{./teaser.user.userslug}" class="text-decoration-none">{buildAvatar(./teaser.user, "18px", true, "avatar-tooltip not-responsive")}</a>
|
|
107
107
|
<a class="permalink text-muted timeago text-xs" href="{config.relative_path}/topic/{./slug}/{./teaser.index}" title="{./teaser.timestampISO}">
|
|
108
108
|
</a>
|
|
109
109
|
</p>
|