nodebb-theme-harmony 1.2.68 → 1.2.70

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.2.68",
3
+ "version": "1.2.70",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.7.0"
6
6
  },
@@ -7,22 +7,22 @@
7
7
  <!-- disables autocomplete on FF --><input type="password" style="display:none">
8
8
 
9
9
  {{{ if isSelf }}}
10
- <div class="mb-2">
11
- <label class="form-label fw-semibold text-xm" for="inputCurrentPassword">[[user:current-password]]</label>
10
+ <div class="mb-3">
11
+ <label class="form-label fw-semibold text-sm" for="inputCurrentPassword">[[user:current-password]]</label>
12
12
  <input autocomplete="off" class="form-control" type="password" id="inputCurrentPassword" placeholder="[[user:current-password]]" value="" {{{ if !hasPassword }}} disabled{{{ end }}}>
13
13
  </div>
14
14
  {{{ end }}}
15
15
 
16
- <div class="mb-2">
17
- <label class="form-label fw-semibold text-xm" for="inputNewPassword">[[user:new-password]]</label>
16
+ <div class="mb-3">
17
+ <label class="form-label fw-semibold text-sm" for="inputNewPassword">[[user:new-password]]</label>
18
18
  <input class="form-control" type="password" id="inputNewPassword" placeholder="[[user:password]]" value="">
19
- <span class="form-feedback" id="password-notify"></span>
19
+ <span class="form-text" id="password-notify"></span>
20
20
  </div>
21
21
 
22
- <div class="mb-2">
23
- <label class="form-label fw-semibold text-xm" for="inputNewPasswordAgain">[[user:confirm-password]]</label>
22
+ <div class="mb-3">
23
+ <label class="form-label fw-semibold text-sm" for="inputNewPasswordAgain">[[user:confirm-password]]</label>
24
24
  <input class="form-control" type="password" id="inputNewPasswordAgain" placeholder="[[user:confirm-password]]" value="">
25
- <span class="form-feedback" id="password-confirm-notify"></span>
25
+ <span class="form-text" id="password-confirm-notify"></span>
26
26
  </div>
27
27
 
28
28
  <div class="form-actions">
@@ -4,7 +4,7 @@
4
4
  <div class="row">
5
5
  <div class="col-12 col-lg-4">
6
6
  <form class="edit-form">
7
- <div class="mb-2">
7
+ <div class="mb-3">
8
8
  <label class="form-label fw-semibold text-sm" for="inputNewUsername">[[user:username]]</label>
9
9
  <input class="form-control" type="text" id="inputNewUsername" placeholder="[[user:username]]" value="{username}">
10
10
  </div>
@@ -12,7 +12,7 @@
12
12
  <!-- disables autocomplete on FF --><input type="password" style="display:none">
13
13
 
14
14
  {{{ if isSelf }}}
15
- <div class="mb-2">
15
+ <div class="mb-3">
16
16
  <label class="form-label fw-semibold text-sm" for="inputCurrentPassword">[[user:current-password]]</label>
17
17
  <input autocomplete="off" class="form-control" type="password" id="inputCurrentPassword" placeholder="[[user:current-password]]" value=""{{{ if !hasPassword }}} disabled{{{ end }}}>
18
18
  </div>
@@ -20,7 +20,6 @@
20
20
 
21
21
  <input type="hidden" name="uid" id="inputUID" value="{uid}" />
22
22
 
23
- <br/>
24
23
  <div class="form-actions">
25
24
  <button id="submitBtn" class="btn btn-primary btn-block"><i class="hide fa fa-spinner fa-spin"></i> [[user:change-username]]</button>
26
25
  </div>
@@ -72,13 +72,13 @@
72
72
 
73
73
  <div class="d-flex">
74
74
  {{{ if !hideReplies }}}
75
- <a component="post/reply-count" data-target-component="post/replies/container" href="#" class="d-flex gap-2 align-items-center mt-2 btn-ghost ff-secondary border rounded-1 p-1 text-muted text-decoration-none text-xs {{{ if (!./replies || shouldHideReplyContainer(@value)) }}}hidden{{{ end }}}">
75
+ <a component="post/reply-count" data-target-component="post/replies/container" href="#" class="d-flex gap-2 align-items-center mt-2 btn btn-ghost ff-secondary border rounded-1 p-1 text-muted text-decoration-none text-xs {{{ if (!./replies || shouldHideReplyContainer(@value)) }}}hidden{{{ end }}}">
76
76
  <span component="post/reply-count/avatars" class="d-flex gap-1 {{{ if posts.replies.hasMore }}}hasMore{{{ end }}}">
77
77
  {{{each posts.replies.users}}}
78
78
  <span>{buildAvatar(posts.replies.users, "20px", true, "avatar-tooltip")}</span>
79
79
  {{{end}}}
80
80
  {{{ if posts.replies.hasMore}}}
81
- <span><i class="fa fa-ellipsis"></i></span>
81
+ <span style="height: 20px; line-height: 20px;"><i class="fa fa-ellipsis"></i></span>
82
82
  {{{ end }}}
83
83
  </span>
84
84