nodebb-theme-persona 13.0.36 → 13.0.38
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
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
<ul class="list-group mb-3">
|
|
17
17
|
<!-- IF allowProfilePicture -->
|
|
18
|
-
<a
|
|
18
|
+
<a component="profile/change/picture" href="#" class="list-group-item">[[user:change_picture]]</a>
|
|
19
19
|
<!-- ENDIF allowProfilePicture -->
|
|
20
20
|
<!-- IF !username:disableEdit -->
|
|
21
21
|
<a href="{config.relative_path}/user/{userslug}/edit/username" class="list-group-item">[[user:change_username]]</a>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!-- IF config.loggedIn -->
|
|
2
|
-
<div class="btn-group
|
|
2
|
+
<div class="btn-group bottom-sheet" component="topic/watch">
|
|
3
3
|
|
|
4
4
|
<button class="btn btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" type="button">
|
|
5
5
|
<span component="category/watching/menu" <!-- IF !../isWatched -->class="hidden"<!-- ENDIF !../isWatched -->><i class="fa fa-fw fa-inbox"></i><span class="visible-sm-inline visible-md-inline visible-lg-inline"> [[category:watching]]</span></span>
|
|
@@ -11,11 +11,35 @@
|
|
|
11
11
|
</button>
|
|
12
12
|
|
|
13
13
|
<ul class="dropdown-menu dropdown-menu-end">
|
|
14
|
-
<li
|
|
14
|
+
<li>
|
|
15
|
+
<a class="dropdown-item d-flex" href="#" component="category/watching" data-state="watching">
|
|
16
|
+
<span><i component="category/watching/check" class="fa fa-fw {{{ if ./isWatched }}}fa-check{{{ end }}}"></i></span>
|
|
17
|
+
<div class="d-flex flex-column">
|
|
18
|
+
<span><i class="fa fa-fw fa-inbox"></i> [[category:watching]]</span>
|
|
19
|
+
<p class="help-text text-muted"><small>[[category:watching.description]]</small></p>
|
|
20
|
+
</div>
|
|
21
|
+
</a>
|
|
22
|
+
</li>
|
|
15
23
|
|
|
16
|
-
<li
|
|
24
|
+
<li>
|
|
25
|
+
<a class="dropdown-item d-flex" href="#" component="category/notwatching" data-state="notwatching">
|
|
26
|
+
<span><i component="category/notwatching/check" class="fa fa-fw {{{ if ./isNotWatched }}}fa-check{{{ end }}}"></i></span>
|
|
27
|
+
<div class="d-flex flex-column">
|
|
28
|
+
<span><i class="fa fa-fw fa-clock-o"></i> [[category:not-watching]]</span>
|
|
29
|
+
<p class="help-text text-muted"><small>[[category:not-watching.description]]</small></p>
|
|
30
|
+
</div>
|
|
31
|
+
</a>
|
|
32
|
+
</li>
|
|
17
33
|
|
|
18
|
-
<li
|
|
34
|
+
<li>
|
|
35
|
+
<a class="dropdown-item d-flex" href="#" component="category/ignoring" data-state="ignoring">
|
|
36
|
+
<span><i component="category/ignoring/check" class="fa fa-fw {{{ if ./isIgnored }}}fa-check{{{ end }}}"></i></span>
|
|
37
|
+
<div class="d-flex flex-column">
|
|
38
|
+
<span><i class="fa fa-fw fa-eye-slash"></i> [[category:ignoring]]</span>
|
|
39
|
+
<p class="help-text text-muted"><small>[[category:ignoring.description]]</small></p>
|
|
40
|
+
</div>
|
|
41
|
+
</a>
|
|
42
|
+
</li>
|
|
19
43
|
</ul>
|
|
20
44
|
</div>
|
|
21
45
|
<!-- ENDIF config.loggedIn -->
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<li id="user_label" class="nav-item dropdown" title="[[global:header.profile]]">
|
|
2
|
-
<label for="user-control-list-check" class="" data-bs-toggle="dropdown" id="user_dropdown" role="button">
|
|
2
|
+
<label for="user-control-list-check" class="" data-bs-toggle="dropdown" id="user_dropdown" role="button" component="header/avatar">
|
|
3
3
|
{buildAvatar(user, "32px", true)}
|
|
4
4
|
<span id="user-header-name" class="d-block d-sm-none">{user.username}</span>
|
|
5
5
|
</label>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!-- IF config.loggedIn -->
|
|
2
|
-
<div class="btn-group
|
|
2
|
+
<div class="btn-group bottom-sheet" component="topic/watch"
|
|
3
3
|
data-bs-toggle="tooltip"
|
|
4
4
|
{{{if isFollowing}}}title="[[topic:watching]]"{{{end}}}
|
|
5
5
|
{{{if isNotFollowing}}}title="[[topic:not-watching]]"{{{end}}}
|
|
@@ -14,9 +14,35 @@ data-bs-toggle="tooltip"
|
|
|
14
14
|
|
|
15
15
|
</button>
|
|
16
16
|
<ul class="dropdown-menu dropdown-menu-end">
|
|
17
|
-
<li
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
<li>
|
|
18
|
+
<a class="dropdown-item d-flex" href="#" component="topic/following">
|
|
19
|
+
<span><i component="topic/following/check" class="fa fa-fw {{{ if isFollowing }}}fa-check{{{ end }}}"></i></span>
|
|
20
|
+
<div class="d-flex flex-column">
|
|
21
|
+
<span><i class="fa fa-fw fa-bell-o"></i> [[topic:watching]]</span>
|
|
22
|
+
<p class="help-text text-muted"><small>[[topic:watching.description]]</small></p>
|
|
23
|
+
</div>
|
|
24
|
+
</a>
|
|
25
|
+
</li>
|
|
26
|
+
|
|
27
|
+
<li>
|
|
28
|
+
<a class="dropdown-item d-flex" href="#" component="topic/not-following">
|
|
29
|
+
<span><i component="topic/not-following/check" class="fa fa-fw {{{ if isNotFollowing }}}fa-check{{{ end }}}"></i></span>
|
|
30
|
+
<div class="d-flex flex-column">
|
|
31
|
+
<span><i class="fa fa-fw fa-bell-slash-o"></i> [[topic:not-watching]]</span>
|
|
32
|
+
<p class="help-text text-muted"><small>[[topic:not-watching.description]]</small></p>
|
|
33
|
+
</div>
|
|
34
|
+
</a>
|
|
35
|
+
</li>
|
|
36
|
+
|
|
37
|
+
<li>
|
|
38
|
+
<a class="dropdown-item d-flex" href="#" component="topic/ignoring">
|
|
39
|
+
<span><i component="topic/ignoring/check" class="fa fa-fw {{{ if isIgnoring }}}fa-check{{{ end }}}"></i></span>
|
|
40
|
+
<div class="d-flex flex-column">
|
|
41
|
+
<span><i class="fa fa-fw fa-eye-slash"></i> [[topic:ignoring]]</span>
|
|
42
|
+
<p class="help-text text-muted"><small>[[topic:ignoring.description]]</small></p>
|
|
43
|
+
</div>
|
|
44
|
+
</a>
|
|
45
|
+
</li>
|
|
20
46
|
</ul>
|
|
21
47
|
</div>
|
|
22
48
|
<!-- ENDIF config.loggedIn -->
|