nodebb-theme-persona 14.1.25 → 14.1.26

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/README.md CHANGED
@@ -13,8 +13,8 @@ Issues are now tracked in [the main project issue tracker](https://github.com/No
13
13
 
14
14
  [Recent Cards](https://github.com/psychobunny/nodebb-plugin-recent-cards)
15
15
 
16
- ## Screenshots
16
+ ## Screenshot
17
+
18
+ ![](./screenshot.png)
17
19
 
18
- ![](https://d2gn4xht817m0g.cloudfront.net/p/product_screenshots/images/original/000/570/286/570286-db378dfd28256a8fabacc9129b3638dc678ac393.png?1439315393)
19
20
 
20
- ![](https://d2gn4xht817m0g.cloudfront.net/p/product_screenshots/images/original/000/570/287/570287-5875c63ce086d361b76d94e5bc7cc88a5fd34b8b.png?1439315419)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-persona",
3
- "version": "14.1.25",
3
+ "version": "14.1.26",
4
4
  "nbbpm": {
5
5
  "compatibility": "^4.0.0"
6
6
  },
@@ -59,7 +59,7 @@
59
59
  </div>
60
60
  </div>
61
61
 
62
- <div class="profile-meta text-xs text-uppercase d-flex gap-3 flex-wrap justify-content-center">
62
+ <div class="profile-meta text-xs text-uppercase d-flex gap-3 flex-wrap justify-content-center align-items-center">
63
63
  <div class="w-100 d-flex gap-3 justify-content-center">
64
64
  <div>
65
65
  <span class="stat-label">[[user:joined]]</span>
@@ -81,19 +81,19 @@
81
81
 
82
82
  {{{ if age }}}
83
83
  <div class="">
84
- <span class="stat-label text-secondary ">[[user:age]]</span>
84
+ <span class="stat-label">[[user:age]]</span>
85
85
  <span class="fw-bold">{age}</span>
86
86
  </div>
87
87
  {{{ end }}}
88
88
 
89
89
  {{{ each customUserFields }}}
90
90
  {{{ if ./value }}}
91
- <div>
91
+ <div class="d-flex gap-1 flex-nowrap align-items-center">
92
92
  <span class="stat-label">{./name}</span>
93
93
  {{{ if (./type == "input-link") }}}
94
94
  <a class="fw-bold" href="{./value}" rel="nofollow noreferrer">{./linkValue}</a>
95
95
  {{{ else }}}
96
- <span class="fw-bold">{./value}</span>
96
+ <span class="fw-bold d-flex flex-nowrap align-items-center">{./value}</span>
97
97
  {{{ end }}}
98
98
  </div>
99
99
  {{{ end }}}
@@ -1,11 +1,11 @@
1
- <!-- IF ../isSection -->
2
- {../name}
3
- <!-- ELSE -->
4
- <!-- IF ../link -->
5
- <a href="{../link}" itemprop="url">
6
- <!-- ELSE -->
7
- <a href="{config.relative_path}/category/{../slug}" itemprop="url">
8
- <!-- ENDIF ../link -->
9
- {../name}
10
- </a>
1
+ <!-- IF ../isSection -->
2
+ {../name}
3
+ <!-- ELSE -->
4
+ <!-- IF ../link -->
5
+ <a href="{../link}" itemprop="url">
6
+ <!-- ELSE -->
7
+ <a href="{config.relative_path}/category/{../slug}" itemprop="url">
8
+ <!-- ENDIF ../link -->
9
+ {../name}
10
+ </a>
11
11
  <!-- ENDIF ../isSection -->
@@ -11,11 +11,7 @@
11
11
 
12
12
  <!-- IMPORT partials/topic/watch.tpl -->
13
13
  <!-- IMPORT partials/topic/sort.tpl -->
14
- {{{ if loggedIn }}}
15
- <button component="topic/crosspost" title="[[topic:crosspost-topic]]" class="btn btn-sm btn-ghost">
16
- <i class="fa fa-fw fa-square-arrow-up-right text-secondary"></i>
17
- </button>
18
- {{{ end }}}
14
+ <!-- IMPORT partials/topic/crosspost.tpl -->
19
15
 
20
16
  <div class="d-inline-block">
21
17
  <!-- IMPORT partials/topic/tools.tpl -->
@@ -0,0 +1,5 @@
1
+ {{{ if loggedIn }}}
2
+ <button component="topic/crosspost" title="[[topic:crosspost-topic]]" class="btn btn-sm btn-ghost">
3
+ <i class="fa fa-fw fa-square-arrow-up-right text-secondary"></i>
4
+ </button>
5
+ {{{ end }}}