nodebb-theme-harmony 2.0.32 → 2.0.33
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/mixins.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{{ if ./items.length }}}
|
|
2
|
-
<li component="topic/event" class="timeline-event text-muted d-flex gap-2 pt-4">
|
|
2
|
+
<li component="topic/event" class="timeline-event text-muted d-flex gap-2 pt-4 px-2 px-lg-0">
|
|
3
3
|
<div class="d-flex flex-column">
|
|
4
4
|
<div class="d-flex text-start align-self-start align-items-center">
|
|
5
5
|
<div class="timeline-badge">
|
|
6
|
-
<i class="fa {{{ if ./icon }}}{./icon}{{{ else }}}fa-circle{{{ end }}} small"></i>
|
|
6
|
+
<i class="fa fa-fw {{{ if ./icon }}}{./icon}{{{ else }}}fa-circle{{{ end }}} small"></i>
|
|
7
7
|
</div>
|
|
8
8
|
<button class="btn btn-sm btn-ghost" type="button" data-bs-toggle="collapse" data-bs-target="#event-collapse-{./id}" aria-expanded="false" aria-controls="collapseExample">
|
|
9
9
|
[[topic:announcers-x, {./items.length}]]
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<div component="topic/event/items">
|
|
14
14
|
{{{ each ./items }}}
|
|
15
15
|
<div class="d-flex gap-2 pt-2" data-topic-event-id="{./id}" data-topic-event-type="{./type}">
|
|
16
|
-
<span class="timeline-text small d-flex align-items-center gap-1 flex-wrap">
|
|
16
|
+
<span class="timeline-text small d-flex align-items-center gap-1 flex-wrap flex-grow-1 flex-lg-grow-0">
|
|
17
17
|
{./text}
|
|
18
18
|
</span>
|
|
19
19
|
{{{ if (privileges.isAdminOrMod && ./id) }}}
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
</div>
|
|
27
27
|
</li>
|
|
28
28
|
{{{ else }}}
|
|
29
|
-
<li component="topic/event" class="timeline-event text-muted d-flex gap-2 pt-4" data-topic-event-id="{./id}" data-topic-event-type="{./type}">
|
|
29
|
+
<li component="topic/event" class="timeline-event text-muted d-flex align-items-start align-items-lg-center gap-2 pt-4 px-2 px-lg-0" data-topic-event-id="{./id}" data-topic-event-type="{./type}">
|
|
30
30
|
<div class="timeline-badge">
|
|
31
|
-
<i class="fa {{{ if ./icon }}}{./icon}{{{ else }}}fa-circle{{{ end }}} small"></i>
|
|
31
|
+
<i class="fa fa-fw {{{ if ./icon }}}{./icon}{{{ else }}}fa-circle{{{ end }}} small"></i>
|
|
32
32
|
</div>
|
|
33
|
-
<span class="timeline-text small d-flex align-items-center gap-1 flex-wrap">
|
|
33
|
+
<span class="timeline-text small d-flex align-items-center gap-1 flex-wrap flex-grow-1 flex-lg-grow-0">
|
|
34
34
|
{./text}
|
|
35
35
|
</span>
|
|
36
36
|
{{{ if (privileges.isAdminOrMod && ./id) }}}
|