nodebb-theme-harmony 2.0.35 → 2.0.36

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": "2.0.35",
3
+ "version": "2.0.36",
4
4
  "nbbpm": {
5
5
  "compatibility": "^4.0.0"
6
6
  },
@@ -6,7 +6,7 @@
6
6
  {{{ if !config.theme.topMobilebar }}}
7
7
  <!-- IMPORT partials/mobile-footer.tpl -->
8
8
  {{{ else }}}
9
- <div class="fixed-bottom navigator-mobile d-lg-none">
9
+ <div class="fixed-bottom d-lg-none">
10
10
  <!-- IMPORT partials/topic/navigator-mobile.tpl -->
11
11
  </div>
12
12
  {{{ end }}}
@@ -1,10 +1,9 @@
1
- <div class="d-flex gap-2 mb-2 justify-content-between align-items-center flex-nowrap">
2
- <div class="icon text-truncate">
3
- <a href="{{{ if post.user.userslug }}}{config.relative_path}/user/{post.user.userslug}{{{else }}}#{{{ end }}}">
4
- {buildAvatar(post.user, "24px", true)} {post.user.username}
5
- </a>
1
+ <div class="d-flex gap-2 mb-2 align-items-center flex-nowrap text-sm">
2
+ {buildAvatar(post.user, "24px", true)}
3
+ <div class="text-truncate">
4
+ <a href="{{{ if post.user.userslug }}}{config.relative_path}/user/{post.user.userslug}{{{else }}}#{{{ end }}}">{post.user.displayname}</a>
6
5
  </div>
7
- <span class="timeago text-nowrap text-sm text-muted" title="{post.timestampISO}"></span>
6
+ <span class="timeago text-nowrap text-muted" title="{post.timestampISO}"></span>
8
7
  </div>
9
8
 
10
- <div>{post.content}</div>
9
+ <div class="text-sm">{post.content}</div>
@@ -1,4 +1,4 @@
1
- <div class="d-flex w-100">
1
+ <div class="d-flex w-100 navigator-mobile">
2
2
  <div class="pagination-block text-bg-light m-2 rounded-1 border border-gray-300 w-100" style="height:30px;">
3
3
  <div class="position-relative">
4
4
  <div class="progress-bar rounded-1 bg-info d-block position-absolute" style="height:28px;"></div>
@@ -49,10 +49,10 @@
49
49
  </div>
50
50
  <div class="row">
51
51
  <div class="col-6">
52
- <button id="myNextPostBtn" class="btn btn-outline-secondary form-control text-truncate" disabled>[[topic:go-to-my-next-post]]</button>
52
+ <button id="myNextPostBtn" class="btn btn-sm btn-ghost border form-control text-truncate" disabled>[[topic:go-to-my-next-post]]</button>
53
53
  </div>
54
54
  <div class="col-6">
55
- <input type="number" class="form-control" id="indexInput" placeholder="[[global:pagination.enter-index]]">
55
+ <input type="number" class="form-control form-control-sm" id="indexInput" placeholder="[[global:pagination.enter-index]]">
56
56
  </div>
57
57
  </div>
58
58
  </li>