nodebb-theme-persona 13.3.10 → 13.3.12
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
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
<div class="row">
|
|
9
9
|
<div class="col-sm-6">
|
|
10
10
|
<!-- IF gdpr_consent -->
|
|
11
|
-
<div class="alert alert-success">
|
|
12
|
-
<i class="fa fa-check float-end fa-3x"></i>
|
|
11
|
+
<div class="alert alert-success d-flex gap-3">
|
|
13
12
|
[[user:consent.received]]
|
|
13
|
+
<i class="fa fa-check fa-3x"></i>
|
|
14
14
|
</div>
|
|
15
15
|
<!-- ELSE -->
|
|
16
16
|
<div class="alert alert-warning">
|
|
@@ -115,8 +115,8 @@
|
|
|
115
115
|
<div class="mb-2">
|
|
116
116
|
<label class="form-label">[[user:category-topic-sort]]</label>
|
|
117
117
|
<select class="form-select" data-property="categoryTopicSort">
|
|
118
|
-
<option value="
|
|
119
|
-
<option value="
|
|
118
|
+
<option value="recently_replied" {{{ if (settings.categoryTopicSort == "recently_replied") }}}selected{{{ end }}}>[[topic:recently-replied]]</option>
|
|
119
|
+
<option value="recently_created" {{{ if (settings.categoryTopicSort == "recently_created") }}}selected{{{ end }}}>[[topic:recently-created]]</option>
|
|
120
120
|
<option value="most_posts" {{{ if (settings.categoryTopicSort == "most_posts") }}}selected{{{ end }}}>[[topic:most-posts]]</option>
|
|
121
121
|
<option value="most_votes" {{{ if (settings.categoryTopicSort == "most_votes") }}}selected{{{ end }}}>[[topic:most-votes]]</option>
|
|
122
122
|
<option value="most_views" {{{ if (settings.categoryTopicSort == "most_views") }}}selected{{{ end }}}>[[topic:most-views]]</option>
|
package/templates/category.tpl
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
{{{ end }}}
|
|
20
20
|
{{{ end }}}
|
|
21
21
|
|
|
22
|
-
<a href="{
|
|
22
|
+
<a href="{url}" class="d-inline-block">
|
|
23
23
|
<div class="alert alert-warning h-100 m-0 px-2 py-1 d-flex gap-1 align-items-center hide" id="new-topics-alert"><i class="fa fa-fw fa-rotate-right"></i>[[recent:load-new-posts]]</div>
|
|
24
24
|
</a>
|
|
25
25
|
</div>
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
</button>
|
|
7
7
|
|
|
8
8
|
<ul class="dropdown-menu dropdown-menu-end" role="menu">
|
|
9
|
-
<li><a class="dropdown-item" href="#" class="
|
|
10
|
-
<li><a class="dropdown-item" href="#" class="
|
|
9
|
+
<li><a class="dropdown-item" href="#" class="recently_replied" data-sort="recently_replied" role="menuitem"><i class="fa fa-fw"></i> [[topic:recently-replied]]</a></li>
|
|
10
|
+
<li><a class="dropdown-item" href="#" class="recently_created" data-sort="recently_created" role="menuitem"><i class="fa fa-fw"></i> [[topic:recently-created]]</a></li>
|
|
11
11
|
<li><a class="dropdown-item" href="#" class="most_posts" data-sort="most_posts" role="menuitem"><i class="fa fa-fw"></i> [[topic:most-posts]]</a></li>
|
|
12
12
|
<li><a class="dropdown-item" href="#" class="most_votes" data-sort="most_votes" role="menuitem"><i class="fa fa-fw"></i> [[topic:most-votes]]</a></li>
|
|
13
13
|
<li><a class="dropdown-item" href="#" class="most_views" data-sort="most_views" role="menuitem"><i class="fa fa-fw"></i> [[topic:most-views]]</a></li>
|