nodebb-theme-persona 13.3.56 → 13.3.57
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,20 +8,20 @@
|
|
|
8
8
|
<div class="d-flex justify-content-between align-items-center gap-3 flex-wrap">
|
|
9
9
|
<div>
|
|
10
10
|
{{{ if allowGroupCreation }}}
|
|
11
|
-
<button class="btn btn-primary" data-action="new"><i class="fa fa-plus"></i> [[groups:new-group]]</button>
|
|
11
|
+
<button class="btn btn-sm btn-primary" data-action="new"><i class="fa fa-plus"></i> [[groups:new-group]]</button>
|
|
12
12
|
{{{ end }}}
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
<div class="d-flex gap-3 align-items-center">
|
|
16
|
-
<select class="form-select" id="search-sort">
|
|
16
|
+
<select class="form-select form-select-sm" id="search-sort">
|
|
17
17
|
<option value="alpha">[[groups:details.group-name]]</option>
|
|
18
18
|
<option value="count">[[groups:details.member-count]]</option>
|
|
19
19
|
<option value="date">[[groups:details.creation-date]]</option>
|
|
20
20
|
</select>
|
|
21
21
|
|
|
22
22
|
<div class="input-group">
|
|
23
|
-
<input type="text" class="form-control" placeholder="[[global:search]]" name="query" value="" id="search-text">
|
|
24
|
-
<button id="search-button" class="btn btn-primary">
|
|
23
|
+
<input type="text" class="form-control form-control-sm" placeholder="[[global:search]]" name="query" value="" id="search-text">
|
|
24
|
+
<button id="search-button" class="btn btn-sm btn-primary">
|
|
25
25
|
<i class="fa fa-search"></i>
|
|
26
26
|
</button>
|
|
27
27
|
</div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{{each tags}}}
|
|
2
|
-
<h5 class="float-start tag-container me-
|
|
2
|
+
<h5 class="float-start tag-container me-5 mb-5 fw-bold">
|
|
3
3
|
<a href="{config.relative_path}/tags/{tags.valueEncoded}" data-tag="{tags.valueEscaped}"><span class="tag-item text-muted text-uppercase text-nowrap tag-class-{tags.class} me-2" data-tag="{tags.valueEscaped}">{tags.valueEscaped}</span><span class="tag-topic-count text-primary text-nowrap" title="{tags.score}">{formattedNumber(tags.score)}</span></a>
|
|
4
4
|
</h5>
|
|
5
5
|
{{{end}}}
|
package/templates/tags.tpl
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
<div class="tags">
|
|
8
8
|
{{{ if displayTagSearch }}}
|
|
9
9
|
{{{ if tags.length }}}
|
|
10
|
-
<div class="
|
|
11
|
-
<div class="
|
|
10
|
+
<div class="d-flex justify-content-end mb-3">
|
|
11
|
+
<div class="search">
|
|
12
12
|
<div class="input-group">
|
|
13
|
-
<input type="text" class="form-control" placeholder="[[global:search]]" id="tag-search">
|
|
14
|
-
<button class="btn btn-primary" type="button">
|
|
13
|
+
<input type="text" class="form-control form-control-sm" placeholder="[[global:search]]" id="tag-search">
|
|
14
|
+
<button class="btn btn-sm btn-primary" type="button">
|
|
15
15
|
<i class="fa fa-search"></i>
|
|
16
16
|
</button>
|
|
17
17
|
</div>
|
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
{{{ end }}}
|
|
21
21
|
{{{ end }}}
|
|
22
22
|
|
|
23
|
+
<hr/>
|
|
24
|
+
|
|
23
25
|
{{{ if !tags.length }}}
|
|
24
26
|
<div class="alert alert-warning">[[tags:no-tags]]</div>
|
|
25
27
|
{{{ end }}}
|