nodebb-theme-persona 13.3.47 → 13.3.48
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
|
@@ -88,20 +88,20 @@
|
|
|
88
88
|
<div class="d-flex p-0 col-lg-5 col-12 align-content-stretch">
|
|
89
89
|
<div class="meta stats d-none d-lg-grid col-6 gap-1 pe-2 text-muted" style="grid-template-columns: 1fr 1fr 1fr;">
|
|
90
90
|
{{{ if !reputation:disabled }}}
|
|
91
|
-
<div class="stats-votes
|
|
92
|
-
<span class="fs-
|
|
93
|
-
<span class="d-none d-xl-flex text-
|
|
91
|
+
<div class="stats-votes p-1 overflow-hidden d-flex flex-column align-items-center">
|
|
92
|
+
<span class="fs-4" title="{./votes}">{humanReadableNumber(./votes, 0)}</span>
|
|
93
|
+
<span class="d-none d-xl-flex text-uppercase text-xs">[[global:votes]]</span>
|
|
94
94
|
<i class="d-xl-none fa fa-fw text-xs text-muted opacity-75 fa-chevron-up"></i>
|
|
95
95
|
</div>
|
|
96
96
|
{{{ end }}}
|
|
97
|
-
<div class="stats-postcount
|
|
98
|
-
<span class="fs-
|
|
99
|
-
<span class="d-none d-xl-flex text-
|
|
97
|
+
<div class="stats-postcount p-1 overflow-hidden d-flex flex-column align-items-center">
|
|
98
|
+
<span class="fs-4" title="{./postcount}">{humanReadableNumber(./postcount, 0)}</span>
|
|
99
|
+
<span class="d-none d-xl-flex text-uppercase text-xs">[[global:posts]]</span>
|
|
100
100
|
<i class="d-xl-none fa-regular fa-fw text-xs text-muted opacity-75 fa-message"></i>
|
|
101
101
|
</div>
|
|
102
|
-
<div class="stats-viewcount
|
|
103
|
-
<span class="fs-
|
|
104
|
-
<span class="d-none d-xl-flex text-
|
|
102
|
+
<div class="stats-viewcount p-1 overflow-hidden d-flex flex-column align-items-center">
|
|
103
|
+
<span class="fs-4" title="{./viewcount}">{humanReadableNumber(./viewcount, 0)}</span>
|
|
104
|
+
<span class="d-none d-xl-flex text-uppercase text-xs">[[global:views]]</span>
|
|
105
105
|
<i class="d-xl-none fa fa-fw text-xs text-muted opacity-75 fa-eye"></i>
|
|
106
106
|
</div>
|
|
107
107
|
</div>
|