nodebb-theme-harmony 1.0.0-beta.97 → 1.0.0-beta.98
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
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
{buildAvatar(./user, "40px", true, "avatar avatar-tooltip")}
|
|
16
16
|
</a>
|
|
17
17
|
{{{ if showSelect }}}
|
|
18
|
-
<div class="checkbox position-absolute top-100 start-50 translate-middle-x p-1 m-0 d-flex" style="max-width:max-content">
|
|
18
|
+
<div class="checkbox position-absolute top-100 start-50 translate-middle-x p-1 m-0 d-none d-lg-flex" style="max-width:max-content">
|
|
19
19
|
<i component="topic/select" class="fa text-muted pointer fa-square-o"></i>
|
|
20
20
|
</div>
|
|
21
21
|
{{{ end }}}
|
|
@@ -109,6 +109,11 @@
|
|
|
109
109
|
</div>
|
|
110
110
|
</div>
|
|
111
111
|
</div>
|
|
112
|
+
{{{ if showSelect }}}
|
|
113
|
+
<div class="checkbox position-absolute top-0 end-0 p-1 mt-3 m-0 d-flex d-lg-none" style="max-width:max-content">
|
|
114
|
+
<i component="topic/select" class="fa fa-square-o text-muted pointer"></i>
|
|
115
|
+
</div>
|
|
116
|
+
{{{ end }}}
|
|
112
117
|
</li>
|
|
113
118
|
{{{end}}}
|
|
114
119
|
</ul>
|
package/templates/topic.tpl
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
{{{each icons}}}<span class="lh-1">{@value}</span>{{{end}}}
|
|
33
33
|
</span>
|
|
34
34
|
<a class="lh-1" href="{config.relative_path}/category/{category.slug}">{function.buildCategoryLabel, category, "border"}</a>
|
|
35
|
-
<div class="lh-1 tags tag-list d-flex hidden-xs gap-2"><!-- IMPORT partials/topic/tags.tpl --></div>
|
|
35
|
+
<div class="lh-1 tags tag-list d-flex flex-wrap hidden-xs gap-2"><!-- IMPORT partials/topic/tags.tpl --></div>
|
|
36
36
|
<div class="d-flex hidden-xs gap-2">
|
|
37
37
|
<!-- IMPORT partials/topic/stats.tpl -->
|
|
38
38
|
</div>
|