nodebb-theme-persona 13.0.28 → 13.0.30
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/library.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodebb-theme-persona",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.30",
|
|
4
4
|
"nbbpm": {
|
|
5
5
|
"compatibility": "^3.0.0"
|
|
6
6
|
},
|
|
@@ -42,8 +42,7 @@
|
|
|
42
42
|
"url": "https://github.com/NodeBB/nodebb-theme-persona/issues"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"pulling": "^2.0.0"
|
|
46
|
-
"striptags": "^3.2.0"
|
|
45
|
+
"pulling": "^2.0.0"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
48
|
"eslint": "^7.32.0",
|
package/scss/mixins.scss
CHANGED
package/scss/style.scss
CHANGED
|
@@ -14,22 +14,22 @@
|
|
|
14
14
|
<li><h6 class="dropdown-header">[[global:status]]</h6></li>
|
|
15
15
|
<li>
|
|
16
16
|
<a href="#" class="dropdown-item user-status" data-status="online">
|
|
17
|
-
<i class="fa fa-fw fa-circle status online"></i><span <!-- IF user.online -->class="bold"<!-- ENDIF user.online -->> [[global:online]]</span>
|
|
17
|
+
<i class="fa fa-fw fa-circle status online"></i><span <!-- IF user.online -->class="fw-bold"<!-- ENDIF user.online -->> [[global:online]]</span>
|
|
18
18
|
</a>
|
|
19
19
|
</li>
|
|
20
20
|
<li>
|
|
21
21
|
<a href="#" class="dropdown-item user-status" data-status="away">
|
|
22
|
-
<i class="fa fa-fw fa-circle status away"></i><span <!-- IF user.away -->class="bold"<!-- ENDIF user.away -->> [[global:away]]</span>
|
|
22
|
+
<i class="fa fa-fw fa-circle status away"></i><span <!-- IF user.away -->class="fw-bold"<!-- ENDIF user.away -->> [[global:away]]</span>
|
|
23
23
|
</a>
|
|
24
24
|
</li>
|
|
25
25
|
<li>
|
|
26
26
|
<a href="#" class="dropdown-item user-status" data-status="dnd">
|
|
27
|
-
<i class="fa fa-fw fa-circle status dnd"></i><span <!-- IF user.dnd -->class="bold"<!-- ENDIF user.dnd -->> [[global:dnd]]</span>
|
|
27
|
+
<i class="fa fa-fw fa-circle status dnd"></i><span <!-- IF user.dnd -->class="fw-bold"<!-- ENDIF user.dnd -->> [[global:dnd]]</span>
|
|
28
28
|
</a>
|
|
29
29
|
</li>
|
|
30
30
|
<li>
|
|
31
31
|
<a href="#" class="dropdown-item user-status" data-status="offline">
|
|
32
|
-
<i class="fa fa-fw fa-circle status offline"></i><span <!-- IF user.offline -->class="bold"<!-- ENDIF user.offline -->> [[global:invisible]]</span>
|
|
32
|
+
<i class="fa fa-fw fa-circle status offline"></i><span <!-- IF user.offline -->class="fw-bold"<!-- ENDIF user.offline -->> [[global:invisible]]</span>
|
|
33
33
|
</a>
|
|
34
34
|
</li>
|
|
35
35
|
<li role="presentation" class="dropdown-divider"></li>
|
|
@@ -3,22 +3,8 @@
|
|
|
3
3
|
<i class="fa {{{ if ./icon }}}{./icon}{{{ else }}}fa-circle{{{ end }}}"></i>
|
|
4
4
|
</div>
|
|
5
5
|
<span class="timeline-text">
|
|
6
|
-
{{{ if ./href}}}
|
|
7
|
-
<a href="{config.relative_path}{./href}">{./text}</a>
|
|
8
|
-
{{{ else }}}
|
|
9
6
|
{./text}
|
|
10
|
-
{{{ end }}}
|
|
11
|
-
|
|
12
7
|
</span>
|
|
13
|
-
{{{ if ./user }}}
|
|
14
|
-
{{{ if ./user.system }}}
|
|
15
|
-
<span class="timeline-text">[[global:system-user]]</span>
|
|
16
|
-
{{{ else }}}
|
|
17
|
-
<span><a href="{config.relative_path}/user/{./user.userslug}">{buildAvatar(./user, "16px", true)} {./user.username}</a></span>
|
|
18
|
-
{{{ end }}}
|
|
19
|
-
{{{ end }}}
|
|
20
|
-
<span class="timeago timeline-text" title="{./timestampISO}"></span>
|
|
21
|
-
|
|
22
8
|
{{{ if privileges.isAdminOrMod }}}
|
|
23
9
|
<span component="topic/event/delete" data-topic-event-id="{./id}" data-topic-event-type="{./type}" class="timeline-text pointer" title="[[topic:delete-event]]"><i class="fa fa-trash"></i></span>
|
|
24
10
|
{{{ end }}}
|