nodebb-theme-harmony 1.0.0-beta.107 → 1.0.0-beta.108

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,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-harmony",
3
- "version": "1.0.0-beta.107",
3
+ "version": "1.0.0-beta.108",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.0.0"
6
6
  },
@@ -1,5 +1,7 @@
1
1
  .topic .pagination-block {
2
- min-width: 150px;
2
+ .scroller-content {
3
+ min-width: 150px;
4
+ }
3
5
  .scroller-container {
4
6
  left: 10px;
5
7
  height: 300px;
@@ -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 badge border border-white border-2 rounded-circle status {user.status}"><span class="visually-hidden">[[global:{user.status}]]</span></span>
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 badge border border-white border-2 rounded-circle status online"><span class="visually-hidden">[[global:online]]</span></span>
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 badge border border-white border-2 rounded-circle status away"><span class="visually-hidden">[[global:away]]</span></span>
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 badge border border-white border-2 rounded-circle status dnd"><span class="visually-hidden">[[global:dnd]]</span></span>
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 badge border border-white border-2 rounded-circle status offline"><span class="visually-hidden">[[global:invisible]]</span></span>
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 badge border border-white border-2 rounded-circle status {loggedInUser.status}"><span class="visually-hidden">[[global:{loggedInUser.status}]]</span></span>{{{ end }}}
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">