nodebb-theme-persona 13.3.42 → 13.3.43
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
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
<div class="btn-group bottom-sheet {{{ if !terms.length }}}hidden{{{ end }}}">
|
|
2
|
-
<button type="button" class="btn btn-
|
|
3
|
-
|
|
2
|
+
<button type="button" class="btn btn-ghost btn-sm ff-secondary d-flex gap-2 align-items-center dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
3
|
+
<i class="fa fa-fw fa-clock text-primary"></i>
|
|
4
|
+
<span class="visible-md-inline visible-lg-inline fw-semibold">{selectedTerm.name}</span>
|
|
4
5
|
</button>
|
|
5
|
-
<ul class="dropdown-menu
|
|
6
|
+
<ul class="dropdown-menu p-1 text-sm" role="menu">
|
|
6
7
|
{{{each terms}}}
|
|
7
|
-
<li role="presentation" class="category">
|
|
8
|
-
<a class="dropdown-item" role="menuitem" href="{config.relative_path}/{terms.url}"
|
|
8
|
+
<li role="presentation" class="category {{{if terms.selected}}}selected{{{end}}}">
|
|
9
|
+
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem" href="{config.relative_path}/{terms.url}">
|
|
10
|
+
<div class="flex-grow-1">{terms.name}</div>
|
|
11
|
+
<i class="flex-shrink-0 fa fa-fw {{{ if terms.selected }}}fa-check{{{ end }}}"></i>
|
|
12
|
+
</a>
|
|
9
13
|
</li>
|
|
10
14
|
{{{end}}}
|
|
11
15
|
</ul>
|