nodebb-theme-harmony 1.0.0-beta.107 → 1.0.0-beta.109
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 +1 -1
- package/scss/modules/topic-navigator.scss +3 -1
- package/templates/partials/categories/item.tpl +1 -1
- package/templates/partials/categories/lastpost.tpl +1 -1
- package/templates/partials/sidebar/user-menu.tpl +5 -5
- package/templates/partials/topic/quickreply.tpl +1 -1
- package/templates/partials/topics_list.tpl +1 -1
package/package.json
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
</div>
|
|
55
55
|
</div>
|
|
56
56
|
{{{ if !config.hideCategoryLastPost }}}
|
|
57
|
-
<div component="topic/teaser" class="teaser col-lg-6">
|
|
57
|
+
<div component="topic/teaser" class="teaser col-lg-6 {{{ if !config.theme.mobileTopicTeasers }}}d-none d-lg-block{{{ end }}}">
|
|
58
58
|
<!-- IMPORT partials/categories/lastpost.tpl -->
|
|
59
59
|
</div>
|
|
60
60
|
{{{ end }}}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<ul id="user-control-list" component="header/usercontrol" class="overscroll-behavior-contain user-dropdown dropdown-menu shadow p-1 text-sm ff-base" aria-labelledby="user_dropdown">
|
|
6
6
|
<li>
|
|
7
7
|
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" component="header/profilelink" href="{relative_path}/user/{user.userslug}">
|
|
8
|
-
<span component="user/status" class="flex-shrink-0
|
|
8
|
+
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status {user.status}"><span class="visually-hidden">[[global:{user.status}]]</span></span>
|
|
9
9
|
<span class="fw-semibold" component="header/username">{user.username}</span>
|
|
10
10
|
</a>
|
|
11
11
|
</li>
|
|
@@ -13,28 +13,28 @@
|
|
|
13
13
|
<li><h6 class="dropdown-header text-xs">[[global:status]]</h6></li>
|
|
14
14
|
<li>
|
|
15
15
|
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.online }}}selected{{{ end }}}" data-status="online">
|
|
16
|
-
<span component="user/status" class="flex-shrink-0
|
|
16
|
+
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status online"><span class="visually-hidden">[[global:online]]</span></span>
|
|
17
17
|
<span class="flex-grow-1">[[global:online]]</span>
|
|
18
18
|
<i class="fa-solid fa-check text-muted flex-shrink-0"></i>
|
|
19
19
|
</a>
|
|
20
20
|
</li>
|
|
21
21
|
<li>
|
|
22
22
|
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.away }}}selected{{{ end }}}" data-status="away">
|
|
23
|
-
<span component="user/status" class="flex-shrink-0
|
|
23
|
+
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status away"><span class="visually-hidden">[[global:away]]</span></span>
|
|
24
24
|
<span class="flex-grow-1">[[global:away]]</span>
|
|
25
25
|
<i class="fa-solid fa-check text-muted flex-shrink-0"></i>
|
|
26
26
|
</a>
|
|
27
27
|
</li>
|
|
28
28
|
<li>
|
|
29
29
|
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.dnd }}}selected{{{ end }}}" data-status="dnd">
|
|
30
|
-
<span component="user/status" class="flex-shrink-0
|
|
30
|
+
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status dnd"><span class="visually-hidden">[[global:dnd]]</span></span>
|
|
31
31
|
<span class="flex-grow-1">[[global:dnd]]</span>
|
|
32
32
|
<i class="fa-solid fa-check text-muted flex-shrink-0"></i>
|
|
33
33
|
</a>
|
|
34
34
|
</li>
|
|
35
35
|
<li>
|
|
36
36
|
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.offline }}}selected{{{ end }}}" data-status="offline">
|
|
37
|
-
<span component="user/status" class="flex-shrink-0
|
|
37
|
+
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status offline"><span class="visually-hidden">[[global:invisible]]</span></span>
|
|
38
38
|
<span class="flex-grow-1">[[global:invisible]]</span>
|
|
39
39
|
<i class="fa-solid fa-check text-muted flex-shrink-0"></i>
|
|
40
40
|
</a>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<div class="icon hidden-xs">
|
|
4
4
|
<a class="d-inline-block position-relative" href="{{{ if loggedInUser.userslug }}}{config.relative_path}/user/{loggedInUser.userslug}{{{ else }}}#{{{ end }}}">
|
|
5
5
|
{buildAvatar(loggedInUser, "48px", true, "", "user/picture")}
|
|
6
|
-
{{{ if loggedInUser.status }}}<span component="user/status" class="position-absolute translate-middle-y
|
|
6
|
+
{{{ if loggedInUser.status }}}<span component="user/status" class="position-absolute translate-middle-y border border-white border-2 rounded-circle status {loggedInUser.status}"><span class="visually-hidden">[[global:{loggedInUser.status}]]</span></span>{{{ end }}}
|
|
7
7
|
</a>
|
|
8
8
|
</div>
|
|
9
9
|
<form class="flex-grow-1 d-flex flex-column gap-2" method="post" action="{config.relative_path}/compose">
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
<a class="permalink text-muted timeago text-xs" href="{config.relative_path}/topic/{./slug}/{./teaser.index}" title="{./teaser.timestampISO}">
|
|
105
105
|
</a>
|
|
106
106
|
</div>
|
|
107
|
-
<div class="post-content text-xs ps-2 line-clamp-2 lh-sm text-break">
|
|
107
|
+
<div class="post-content text-xs ps-2 line-clamp-sm-2 lh-sm text-break">
|
|
108
108
|
{./teaser.content}
|
|
109
109
|
</div>
|
|
110
110
|
{{{ end }}}
|