nodebb-theme-persona 11.3.35 → 11.3.36

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-persona",
3
- "version": "11.3.35",
3
+ "version": "11.3.36",
4
4
  "nbbpm": {
5
5
  "compatibility": "^1.18.0"
6
6
  },
@@ -36,7 +36,11 @@
36
36
  {{{ if !feeds:disableRSS }}}
37
37
  {{{ if rssFeedUrl }}}<a class="hidden-xs" target="_blank" href="{rssFeedUrl}"><i class="fa fa-rss-square"></i></a>{{{ end }}}
38
38
  {{{ end }}}
39
+ {{{ if browsingUsers }}}
40
+ <div class="inline-block hidden-xs">
39
41
  <!-- IMPORT partials/topic/browsing-users.tpl -->
42
+ </div>
43
+ {{{ end }}}
40
44
 
41
45
  <!-- IMPORT partials/post_bar.tpl -->
42
46
  </div>
@@ -71,6 +75,13 @@
71
75
  {{{end}}}
72
76
  </ul>
73
77
 
78
+ {{{ if browsingUsers }}}
79
+ <div class="visible-xs">
80
+ <!-- IMPORT partials/topic/browsing-users.tpl -->
81
+ <hr/>
82
+ </div>
83
+ {{{ end }}}
84
+
74
85
  <!-- IF config.enableQuickReply -->
75
86
  <!-- IMPORT partials/topic/quickreply.tpl -->
76
87
  <!-- ENDIF config.enableQuickReply -->
@@ -1,13 +0,0 @@
1
- <div component="topic/browsing-users" class="inline-block hidden-xs">
2
- {{{each browsingUsers}}}
3
- <div class="pull-left" data-uid="{browsingUsers.uid}">
4
- <a href="<!-- IF browsingUsers.userslug -->{config.relative_path}/user/{browsingUsers.userslug}<!-- ELSE -->#<!-- ENDIF browsingUsers.userslug -->">
5
- <!-- IF browsingUsers.picture -->
6
- <img class="avatar avatar-sm avatar-rounded" component="user/picture" src="{browsingUsers.picture}" align="left" itemprop="image" title="{browsingUsers.username}"/>
7
- <!-- ELSE -->
8
- <div class="avatar avatar-sm avatar-rounded" component="user/picture" title="{browsingUsers.username}" style="background-color: {browsingUsers.icon:bgColor};">{browsingUsers.icon:text}</div>
9
- <!-- ENDIF browsingUsers.picture -->
10
- </a>
11
- </div>
12
- {{{end}}}
13
- </div>