nodebb-theme-harmony 2.2.66 → 2.2.67
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodebb-theme-harmony",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.67",
|
|
4
4
|
"nbbpm": {
|
|
5
5
|
"compatibility": "^4.0.0"
|
|
6
6
|
},
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@fontsource/poppins": "5.2.7"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"eslint": "10.
|
|
48
|
+
"eslint": "10.3.0",
|
|
49
49
|
"eslint-config-nodebb": "^2.0.0"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<div class="d-flex flex-column gap-1">
|
|
31
31
|
<h2 class="fullname fw-semibold fs-2 tracking-tight mb-0">{{{ if fullname }}}{fullname}{{{ else }}}{username}{{{ end }}}</h2>
|
|
32
32
|
<div class="d-flex flex-wrap gap-1 text-sm align-items-center">
|
|
33
|
-
<span class="username fw-bold"
|
|
33
|
+
<span class="username fw-bold">@{username}</span>
|
|
34
34
|
<div class="d-flex align-items-center gap-1 p-1 flex-wrap">
|
|
35
35
|
{{{ if selectedGroup.length }}}
|
|
36
36
|
{{{ each selectedGroup }}}
|
|
@@ -52,6 +52,15 @@
|
|
|
52
52
|
{{{ end }}}
|
|
53
53
|
</div>
|
|
54
54
|
{{{ end }}}
|
|
55
|
+
{{{ if muted }}}
|
|
56
|
+
<div class="text-sm text-muted">
|
|
57
|
+
{{{ if mutedUntil }}}
|
|
58
|
+
[[user:info.muted-until, {isoTimeToLocaleString(./muted_until_readable, config.userLang)}]]
|
|
59
|
+
{{{ else }}}
|
|
60
|
+
[[user:info.muted-permanently]]
|
|
61
|
+
{{{ end }}}
|
|
62
|
+
</div>
|
|
63
|
+
{{{ end }}}
|
|
55
64
|
{{{ end }}}
|
|
56
65
|
</div>
|
|
57
66
|
</div>
|
|
@@ -11,5 +11,7 @@
|
|
|
11
11
|
<a class="btn btn-ghost btn-sm ff-secondary fw-semibold" href="{config.relative_path}/users?section=flagged">[[users:most-flags]]</a>
|
|
12
12
|
|
|
13
13
|
<a class="btn btn-ghost btn-sm ff-secondary fw-semibold" href="{config.relative_path}/users?section=banned">[[user:banned]]</a>
|
|
14
|
+
|
|
15
|
+
<a class="btn btn-ghost btn-sm ff-secondary fw-semibold" href="{config.relative_path}/users?section=muted">[[user:muted]]</a>
|
|
14
16
|
{{{ end }}}
|
|
15
17
|
</div>
|