nodebb-theme-harmony 1.0.0-beta.85 → 1.0.0-beta.86
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
|
@@ -75,7 +75,10 @@ ul.topics-list {
|
|
|
75
75
|
align-items: start;
|
|
76
76
|
grid-auto-rows: min-content;
|
|
77
77
|
@include media-breakpoint-up(md) { display: grid; }
|
|
78
|
-
@include media-breakpoint-up(xl) {
|
|
78
|
+
@include media-breakpoint-up(xl) {
|
|
79
|
+
grid-auto-columns: minmax(0, 1fr);
|
|
80
|
+
grid-auto-flow: column;
|
|
81
|
+
}
|
|
79
82
|
|
|
80
83
|
> .card {
|
|
81
84
|
display: flex;
|
|
@@ -89,8 +92,9 @@ ul.topics-list {
|
|
|
89
92
|
color: $text-muted;
|
|
90
93
|
@include media-breakpoint-up(xl) {
|
|
91
94
|
flex-direction: column;
|
|
92
|
-
padding: 0.5rem
|
|
95
|
+
padding: 0.5rem;
|
|
93
96
|
gap: 0;
|
|
97
|
+
min-width: 4.4rem;
|
|
94
98
|
min-height:3.4rem;
|
|
95
99
|
}
|
|
96
100
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="pagination-block d-none d-lg-block flex-1">
|
|
1
|
+
<div class="pagination-block d-none d-lg-block flex-1 mb-2">
|
|
2
2
|
<div class="ps-1 ps-md-0 d-inline-block sticky-top" style="top:6rem;z-index:1;">
|
|
3
3
|
<div class="scroller-content d-flex gap-2 flex-column align-items-start">
|
|
4
4
|
<div class="pointer pagetop btn-ghost-sm d-inline-flex" style="padding: 4px;"><i class="fa fa-chevron-up"></i></div>
|
package/templates/users.tpl
CHANGED
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
</div>
|
|
30
30
|
<hr/>
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
<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">
|
|
33
|
+
{{{ each users }}}
|
|
34
|
+
<!-- IMPORT partials/users/item.tpl -->
|
|
35
|
+
{{{ end }}}
|
|
36
|
+
</div>
|
|
33
37
|
|
|
34
38
|
<!-- IMPORT partials/paginator.tpl -->
|
|
35
39
|
</div>
|