nodebb-theme-persona 13.0.28 → 13.0.29
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.29",
|
|
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
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<div class="form-group">
|
|
2
|
-
<label for="agree-terms">[[register:terms_of_use]]</label>
|
|
3
|
-
<div class="tos">{termsOfUse}</div>
|
|
4
|
-
<div class="checkbox">
|
|
5
|
-
<label>
|
|
6
|
-
<input type="checkbox" name="agree-terms" id="agree-terms"> [[register:agree_to_terms_of_use]]
|
|
7
|
-
</label>
|
|
8
|
-
</div>
|
|
1
|
+
<div class="form-group">
|
|
2
|
+
<label for="agree-terms">[[register:terms_of_use]]</label>
|
|
3
|
+
<div class="tos">{termsOfUse}</div>
|
|
4
|
+
<div class="checkbox">
|
|
5
|
+
<label>
|
|
6
|
+
<input type="checkbox" name="agree-terms" id="agree-terms"> [[register:agree_to_terms_of_use]]
|
|
7
|
+
</label>
|
|
8
|
+
</div>
|
|
9
9
|
</div>
|
|
@@ -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 -->
|
|
@@ -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>
|
package/theme.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "nodebb-theme-persona",
|
|
3
|
-
"name": "Persona",
|
|
4
|
-
"description": "The default theme for NodeBB. Uses a standard approach to forum design.",
|
|
5
|
-
"url": "https://github.com/psychobunny/nodebb-theme-persona",
|
|
6
|
-
"screenshot": "screenshot.png"
|
|
1
|
+
{
|
|
2
|
+
"id": "nodebb-theme-persona",
|
|
3
|
+
"name": "Persona",
|
|
4
|
+
"description": "The default theme for NodeBB. Uses a standard approach to forum design.",
|
|
5
|
+
"url": "https://github.com/psychobunny/nodebb-theme-persona",
|
|
6
|
+
"screenshot": "screenshot.png"
|
|
7
7
|
}
|