nodebb-theme-persona 14.2.26 → 14.2.28
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
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<!-- ENDIF !uploads.length -->
|
|
12
12
|
|
|
13
13
|
<div class="table-responsive">
|
|
14
|
-
<table class="table table-
|
|
14
|
+
<table class="table table-sm w-100">
|
|
15
15
|
<thead>
|
|
16
16
|
<tr>
|
|
17
17
|
<th></th>
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
<tbody>
|
|
22
22
|
{{{ each uploads }}}
|
|
23
23
|
<tr data-name="{./name}">
|
|
24
|
-
<td>
|
|
25
|
-
<a class="text-break" href="{config.relative_path}{./url}">{./url}</a>
|
|
24
|
+
<td class="align-middle">
|
|
25
|
+
<a class="text-break text-reset text-sm" href="{config.relative_path}{./url}">{./url}</a>
|
|
26
26
|
</td>
|
|
27
27
|
<td style="width: 1%; white-space: nowrap;">
|
|
28
28
|
<button class="btn btn-danger btn-sm" data-action="delete" aria-label="[[aria:delete-upload-button]]"><i class="fa fa-trash"></i></button>
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<div class="mb-3 user-title-option">
|
|
35
35
|
<div class="d-flex align-items-center gap-3">
|
|
36
36
|
<label class="form-label mb-0">[[groups:details.badge-preview]]</label>
|
|
37
|
-
<span class="badge rounded-1 text-uppercase text-truncate rounded-1 {{{ if !group.userTitleEnabled }}} hide{{{ end }}}" style="max-width:150px; color: {group.textColor}; background-color: {group.labelColor}"><i class="fa{{{ if group.icon
|
|
37
|
+
<span class="badge rounded-1 text-uppercase text-truncate rounded-1 d-flex align-items-center gap-1 {{{ if !group.userTitleEnabled }}} hide{{{ end }}}" style="max-width:150px; color: {group.textColor}; background-color: {group.labelColor}"><i class="fa {{{ if (group.icon && (group.icon != "fa-nbb-none")) }}}{group.icon}{{{ else }}}hidden{{{ end }}}"></i><span class="badge-text">{{{ if group.userTitle }}}{group.userTitle}{{{ end }}}</span></span>
|
|
38
38
|
</div>
|
|
39
39
|
<hr/>
|
|
40
40
|
<div class="d-flex flex-column gap-2">
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<a href="{config.relative_path}/groups/{./slug}" class="badge rounded-1 text-uppercase text-truncate text-decoration-none d-flex align-items-center gap-1" style="line-height: normal; 150px;color:{./textColor};background-color: {./labelColor};"><i class="fa {{{ if ./icon }}}{./icon}{{{else}}}hidden{{{ end }}}"></i><span class="badge-text">{{{ if ./userTitle }}}{./userTitle}{{{ end }}}</span></a>
|
|
1
|
+
<a href="{config.relative_path}/groups/{./slug}" class="badge rounded-1 text-uppercase text-truncate text-decoration-none d-flex align-items-center gap-1" style="line-height: normal; 150px;color:{./textColor};background-color: {./labelColor};"><i class="fa {{{ if (./icon && (./icon != "fa-nbb-none")) }}}{./icon}{{{else}}}hidden{{{ end }}}"></i><span class="badge-text">{{{ if ./userTitle }}}{./userTitle}{{{ end }}}</span></a>
|