nodebb-theme-harmony 2.2.56 → 2.2.58
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-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodebb-theme-harmony",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.58",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "nodebb-theme-harmony",
|
|
9
|
-
"version": "2.2.
|
|
9
|
+
"version": "2.2.58",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@fontsource/inter": "5.2.8",
|
package/package.json
CHANGED
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
<div>
|
|
17
17
|
<div class="d-flex justify-content-end gap-2">
|
|
18
|
+
<div class="me-auto">
|
|
19
|
+
<!-- IMPORT partials/category/selector-dropdown-left.tpl -->
|
|
20
|
+
</div>
|
|
18
21
|
<button type="button" component="topic/quickreply/upload/button" class="btn btn-ghost btn-sm border"><i class="fa fa-upload"></i></button>
|
|
19
22
|
<button type="button" component="topic/quickreply/expand" class="btn btn-ghost btn-sm border" title="[[topic:open-composer]]"><i class="fa fa-expand"></i></button>
|
|
20
23
|
<button type="submit" component="topic/quickreply/button" class="btn btn-sm btn-primary">[[topic:post-quick-{{{ if tid }}}reply{{{ else }}}create{{{ end }}}]]</button>
|
package/templates/world.tpl
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<div class="world {{{if widgets.sidebar.length }}}col-lg-9 col-sm-12{{{ else }}}col-lg-12{{{ end }}}">
|
|
28
28
|
<div class="category">
|
|
29
29
|
<div class="row flex-row-reverse">
|
|
30
|
-
<div class="col-lg-4 col-sm-12 mt-2 pt-1">
|
|
30
|
+
<div class="col-lg-4 col-sm-12 mt-2 pt-1 {{{ if !config.loggedIn }}}invisible{{{ end }}}">
|
|
31
31
|
<form class="mb-3" role="search" method="GET" action="{config.relative_path}/search">
|
|
32
32
|
<input type="hidden" name="in" value="categories" />
|
|
33
33
|
<div class="input-group bottom-sheet">
|
|
@@ -69,17 +69,21 @@
|
|
|
69
69
|
<div class="col-lg-8 col-sm-12">
|
|
70
70
|
<!-- IMPORT partials/topic-list-bar.tpl -->
|
|
71
71
|
<!-- IMPORT partials/topic/quickreply.tpl -->
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
72
|
+
|
|
73
|
+
{{{ if !config.loggedIn }}}
|
|
74
|
+
<div class="alert alert-info alert-dismissible fade show">
|
|
75
|
+
<p class="fw-semibold">
|
|
76
76
|
[[world:onboard.title]]
|
|
77
|
-
</
|
|
77
|
+
</p>
|
|
78
78
|
<p>[[world:onboard.what]]</p>
|
|
79
79
|
<p>[[world:onboard.why]]</p>
|
|
80
80
|
<p>[[world:onboard.how]]</p>
|
|
81
|
+
<a href="{config.relative_path}/register" class="fw-semibold btn btn-sm btn-warning">[[global:register]]</a>
|
|
82
|
+
<a href="{config.relative_path}/login" class="fw-semibold btn btn-sm btn-info">[[global:login]]</a>
|
|
83
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
81
84
|
</div>
|
|
82
85
|
{{{ end }}}
|
|
86
|
+
|
|
83
87
|
<ul class="list-unstyled" id="world-feed">
|
|
84
88
|
{{{ each posts }}}
|
|
85
89
|
<!-- IMPORT partials/feed/item.tpl -->
|