nodebb-theme-harmony 1.0.0-beta.62 → 1.0.0-beta.64
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
package/scss/common.scss
CHANGED
package/scss/sidebar.scss
CHANGED
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
<ul class="notifications-dropdown dropdown-menu p-1 shadow">
|
|
12
12
|
<li>
|
|
13
13
|
<ul component="notifications/list" class="notification-list list-unstyled overscroll-behavior-contain ff-base">
|
|
14
|
-
<li class="mb-2 p-1
|
|
14
|
+
<li class="mb-2 p-1">
|
|
15
15
|
<div class="d-flex gap-1 justify-content-between">
|
|
16
|
-
<div class="d-flex gap-2 flex-grow-1">
|
|
16
|
+
<div class="d-flex gap-2 flex-grow-1 placeholder-wave">
|
|
17
17
|
<div class="placeholder" style="width: 32px; height: 32px;"></div>
|
|
18
18
|
<div class="flex-grow-1">
|
|
19
19
|
<div class="d-flex flex-column">
|
|
@@ -4,36 +4,34 @@
|
|
|
4
4
|
<div class="fw-semibold text-truncate" title="{./displayname}">{./displayname}</div>
|
|
5
5
|
<div class="text-xs text-muted text-truncate">@{./username}</div>
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
{{{ end }}}
|
|
7
|
+
{{{ if section_online }}}
|
|
8
|
+
<div class="text-xs text-muted text-truncate">
|
|
9
|
+
<span class="timeago" title="{./lastonlineISO}"></span>
|
|
10
|
+
</div>
|
|
11
|
+
{{{ end }}}
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
{{{ if section_joindate }}}
|
|
14
|
+
<div class="text-xs text-muted text-truncate">
|
|
15
|
+
<span class="timeago" title="{./joindateISO}"></span>
|
|
16
|
+
</div>
|
|
17
|
+
{{{ end }}}
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
{{{ if section_sort-reputation }}}
|
|
20
|
+
<div class="text-xs text-muted text-truncate">
|
|
21
|
+
<span class="formatted-number">{./reputation}</span>
|
|
22
|
+
</div>
|
|
23
|
+
{{{ end }}}
|
|
25
24
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
{{{ if section_sort-posts }}}
|
|
26
|
+
<div class="text-xs text-muted text-truncate">
|
|
27
|
+
<span class="formatted-number">{./postcount}</span>
|
|
28
|
+
</div>
|
|
29
|
+
{{{ end }}}
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
</div>
|
|
36
|
-
{{{ end }}}
|
|
31
|
+
{{{ if section_flagged }}}
|
|
32
|
+
<div class="text-xs text-muted text-truncate">
|
|
33
|
+
<span class="formatted-number">{./flags}</span>
|
|
37
34
|
</div>
|
|
35
|
+
{{{ end }}}
|
|
38
36
|
</div>
|
|
39
37
|
</a>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div id="users-container" class="users-container row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5 g-
|
|
1
|
+
<div id="users-container" class="users-container row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5 g-4">
|
|
2
2
|
{{{ each users }}}
|
|
3
3
|
<!-- IMPORT partials/users/item.tpl -->
|
|
4
4
|
{{{ end }}}
|