nodebb-theme-persona 14.2.22 → 14.2.24
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
|
@@ -92,8 +92,8 @@
|
|
|
92
92
|
<div class="card card-body mb-3">
|
|
93
93
|
<div class="mb-2">
|
|
94
94
|
<div class="d-flex gap-4 align-items-center justify-content-between mb-3">
|
|
95
|
-
<label class="form-label text-sm mb-0" for="unreadCutoff">[[user:unread.cutoff, {
|
|
96
|
-
<input id="unreadCutoff" value="{settings.unreadCutoff}" type="number" class="form-control form-control-sm text-end" data-property="unreadCutoff" min="1" max="{
|
|
95
|
+
<label class="form-label text-sm mb-0" for="unreadCutoff">[[user:unread.cutoff, {maxUnreadCutoff}]]</label>
|
|
96
|
+
<input id="unreadCutoff" value="{settings.unreadCutoff}" type="number" class="form-control form-control-sm text-end" data-property="unreadCutoff" min="1" max="{maxUnreadCutoff}" style="max-width: 64px;">
|
|
97
97
|
</div>
|
|
98
98
|
<p class="form-text text-xs">[[user:unread.cutoff-help]]</p>
|
|
99
99
|
</div>
|
|
@@ -16,25 +16,25 @@
|
|
|
16
16
|
<!-- IMPORT partials/breadcrumbs.tpl -->
|
|
17
17
|
</div>
|
|
18
18
|
|
|
19
|
-
<div class="d-flex flex-column flex-md-row justify-content-md-between pb-2 mb-4 mt-2 border-bottom">
|
|
20
|
-
<div class="d-flex flex-column">
|
|
21
|
-
<div class="d-flex align-items-center gap-2">
|
|
19
|
+
<div class="d-flex flex-column flex-md-row justify-content-md-between pb-2 mb-4 mt-2 border-bottom gap-3">
|
|
20
|
+
<div class="d-flex flex-column gap-2">
|
|
21
|
+
<div class="d-flex flex-column flex-md-row align-items-md-center gap-2">
|
|
22
22
|
<h3 class="mb-0 text-capitalize">{group.displayName}</h3>
|
|
23
|
-
</div>
|
|
24
|
-
<div class="d-flex gap-2">
|
|
25
|
-
{group.descriptionParsed}
|
|
26
23
|
<div>
|
|
27
24
|
{{{ if group.private }}}<span class="badge text-bg-light border border-1">[[groups:details.private]]</span>{{{ end }}}
|
|
28
25
|
{{{ if group.hidden }}}<span class="badge text-bg-light border border-1">[[groups:details.hidden]]</span>{{{ end }}}
|
|
29
26
|
</div>
|
|
30
27
|
</div>
|
|
28
|
+
<div>
|
|
29
|
+
{group.descriptionParsed}
|
|
30
|
+
</div>
|
|
31
31
|
</div>
|
|
32
32
|
<div class="d-flex gap-2 align-items-start">
|
|
33
33
|
{{{ if loggedIn }}}
|
|
34
34
|
{function.membershipBtn, group}
|
|
35
35
|
{{{ end }}}
|
|
36
36
|
{{{ if isAdmin }}}
|
|
37
|
-
<a href="{config.relative_path}/admin/manage/groups/{group.slug}" target="_blank" class="btn btn-light"><i class="fa fa-gear"></i> [[user:edit]]</a>
|
|
37
|
+
<a href="{config.relative_path}/admin/manage/groups/{group.slug}" target="_blank" class="btn btn-light text-nowrap"><i class="fa fa-gear"></i> [[user:edit]]</a>
|
|
38
38
|
{{{ end }}}
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|