nodebb-theme-harmony 1.0.0-beta.62 → 1.0.0-beta.63

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.62",
3
+ "version": "1.0.0-beta.63",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.0.0"
6
6
  },
package/scss/sidebar.scss CHANGED
@@ -87,7 +87,8 @@
87
87
  line-height: 12px;
88
88
  &.visible-open {
89
89
  font-size:12px;
90
- line-height: 16px;
90
+ line-height: 12px;
91
+ font-weight: normal;
91
92
  }
92
93
  }
93
94
 
@@ -4,36 +4,34 @@
4
4
  <div class="fw-semibold text-truncate" title="{./displayname}">{./displayname}</div>
5
5
  <div class="text-xs text-muted text-truncate">@{./username}</div>
6
6
 
7
- <div class="align-self-start">
8
- {{{ if section_online }}}
9
- <div class="card card-header border rounded-1 py-0 px-1 text-xs">
10
- <span class="timeago" title="{./lastonlineISO}"></span>
11
- </div>
12
- {{{ end }}}
7
+ {{{ if section_online }}}
8
+ <div class="text-xs text-muted text-truncate">
9
+ <span class="timeago" title="{./lastonlineISO}"></span>
10
+ </div>
11
+ {{{ end }}}
13
12
 
14
- {{{ if section_joindate }}}
15
- <div class="card card-header border rounded-1 py-0 px-1 text-xs">
16
- <span class="timeago" title="{./joindateISO}"></span>
17
- </div>
18
- {{{ end }}}
13
+ {{{ if section_joindate }}}
14
+ <div class="text-xs text-muted text-truncate">
15
+ <span class="timeago" title="{./joindateISO}"></span>
16
+ </div>
17
+ {{{ end }}}
19
18
 
20
- {{{ if section_sort-reputation }}}
21
- <div class="card card-header border rounded-1 py-0 px-1 text-xs">
22
- <span class="formatted-number">{./reputation}</span>
23
- </div>
24
- {{{ end }}}
19
+ {{{ if section_sort-reputation }}}
20
+ <div class="text-xs text-muted text-truncate">
21
+ <span class="formatted-number">{./reputation}</span>
22
+ </div>
23
+ {{{ end }}}
25
24
 
26
- {{{ if section_sort-posts }}}
27
- <div class="card card-header border rounded-1 py-0 px-1 text-xs">
28
- <span class="formatted-number">{./postcount}</span>
29
- </div>
30
- {{{ end }}}
25
+ {{{ if section_sort-posts }}}
26
+ <div class="text-xs text-muted text-truncate">
27
+ <span class="formatted-number">{./postcount}</span>
28
+ </div>
29
+ {{{ end }}}
31
30
 
32
- {{{ if section_flagged }}}
33
- <div class="card card-header border rounded-1 py-0 px-1 text-xs">
34
- <span class="formatted-number">{./flags}</span>
35
- </div>
36
- {{{ end }}}
31
+ {{{ if section_flagged }}}
32
+ <div class="text-xs text-muted text-truncate">
33
+ <span class="formatted-number">{./flags}</span>
37
34
  </div>
35
+ {{{ end }}}
38
36
  </div>
39
37
  </a>
@@ -1,4 +1,4 @@
1
- <div id="users-container" class="users-container row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5 g-2">
1
+ <div id="users-container" class="users-container row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5 g-4">
2
2
  {{{ each users }}}
3
3
  <!-- IMPORT partials/users/item.tpl -->
4
4
  {{{ end }}}