nodebb-theme-harmony 3.1.7 → 3.1.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodebb-theme-harmony",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.9",
|
|
4
4
|
"nbbpm": {
|
|
5
5
|
"compatibility": "^4.14.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.8.0",
|
|
49
49
|
"eslint-config-nodebb": "^2.0.2"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
{{{ each customUserFields }}}
|
|
21
21
|
<div class="mb-3">
|
|
22
|
-
<label class="form-label fw-bold" for="{./key}">{./name}</label>
|
|
22
|
+
<label class="form-label fw-bold" for="{./key}">{{tx(./name)}}</label>
|
|
23
23
|
{{{ if ((./type == "input-text") || (./type == "input-link")) }}}
|
|
24
24
|
<input class="form-control" type="text" id="{./key}" name="{./key}" value="{./value}">
|
|
25
25
|
{{{ end }}}
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
{{{ end }}}
|
|
74
74
|
</div>
|
|
75
75
|
|
|
76
|
-
<input type="text" class="form-control form-control-sm" id="chatAllowListAdd" placeholder="
|
|
76
|
+
<input type="text" class="form-control form-control-sm" id="chatAllowListAdd" placeholder="{{tx("user:chat-list-add-user")}}"/>
|
|
77
77
|
</div>
|
|
78
78
|
|
|
79
79
|
<div class="d-flex flex-column mb-3">
|
|
@@ -114,14 +114,14 @@
|
|
|
114
114
|
{{{ end }}}
|
|
115
115
|
|
|
116
116
|
{{{ if !reputation:disabled }}}
|
|
117
|
-
<div class="d-flex votes align-items-center">
|
|
117
|
+
<div class="d-flex gap-1 votes align-items-center">
|
|
118
118
|
<a component="post/upvote" href="#" class="btn btn-ghost btn-sm{{{ if posts.upvoted }}} upvoted{{{ end }}}" title="{{tx("topic:upvote-post")}}">
|
|
119
119
|
<i class="fa fa-fw fa-chevron-up text-primary"></i>
|
|
120
120
|
</a>
|
|
121
121
|
|
|
122
122
|
<meta itemprop="upvoteCount" content="{posts.upvotes}">
|
|
123
123
|
<meta itemprop="downvoteCount" content="{posts.downvotes}">
|
|
124
|
-
<a href="#" class="px-2
|
|
124
|
+
<a href="#" class="px-2 btn btn-ghost btn-sm" component="post/vote-count" data-votes="{posts.votes}" title="{{tx("global:voters")}}">{posts.votes}</a>
|
|
125
125
|
|
|
126
126
|
{{{ if !downvote:disabled }}}
|
|
127
127
|
<a component="post/downvote" href="#" class="btn btn-ghost btn-sm{{{ if posts.downvoted }}} downvoted{{{ end }}}" title="{{tx("topic:downvote-post")}}">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div component="topic/reply/container" class="btn-group {{{ if !privileges.topics:reply }}}hidden{{{ end }}}">
|
|
2
|
-
<a href="{config.relative_path}/compose?tid={tid}" class="d-flex {{{ if !config.theme.topicSidebarTools}}}px-3{{{ end }}} gap-2 align-items-center btn btn-sm btn-primary fw-semibold" component="topic/reply" data-ajaxify="false" role="button"><i class="fa fa-fw fa-reply d-none {{{ if config.theme.topicSidebarTools}}} d-md-block{{{ end }}}"></i><span class="text-truncate text-nowrap">{{
|
|
2
|
+
<a href="{config.relative_path}/compose?tid={tid}" class="d-flex {{{ if !config.theme.topicSidebarTools}}}px-3{{{ end }}} gap-2 align-items-center btn btn-sm btn-primary fw-semibold" component="topic/reply" data-ajaxify="false" role="button"><i class="fa fa-fw fa-reply d-none {{{ if config.theme.topicSidebarTools}}} d-md-block{{{ end }}}"></i><span class="text-truncate text-nowrap">{{tx("topic:reply")}}</span></a>
|
|
3
3
|
<button type="button" class="btn btn-sm btn-primary dropdown-toggle flex-0" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-label="{{tx("topic:reply-options")}}">
|
|
4
4
|
<span class="caret"></span>
|
|
5
5
|
</button>
|