nodebb-theme-persona 11.3.11 → 11.3.15
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/less/groups.less +1 -1
- package/package.json +1 -1
- package/templates/header.tpl +1 -1
- package/templates/partials/tags_list.tpl +1 -1
- package/templates/partials/topic/navigator.tpl +2 -2
- package/templates/partials/topic/tags.tpl +2 -2
- package/templates/partials/topics_list.tpl +1 -1
- package/templates/topic.tpl +2 -2
package/less/groups.less
CHANGED
package/package.json
CHANGED
package/templates/header.tpl
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html lang="{function.localeToHTML, userLang, defaultLang}" {{{if languageDirection}}}data-dir="{languageDirection}" style="direction: {languageDirection};" {{{end}}} >
|
|
2
|
+
<html lang="{function.localeToHTML, userLang, defaultLang}" {{{if languageDirection}}}data-dir="{languageDirection}" style="direction: {languageDirection}; --panel-offset: 50px;" {{{end}}} >
|
|
3
3
|
<head>
|
|
4
4
|
<title>{browserTitle}</title>
|
|
5
5
|
{{{each metaTags}}}{function.buildMetaTag}{{{end}}}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{{each tags}}}
|
|
2
2
|
<h3 class="pull-left tag-container">
|
|
3
|
-
<a href="{config.relative_path}/tags/{tags.
|
|
3
|
+
<a href="{config.relative_path}/tags/{tags.valueEncoded}" data-value="{tags.valueEscaped}"><span class="tag-item tag-class-{tags.class}" data-tag="{tags.valueEscaped}">{tags.valueEscaped}</span><span class="tag-topic-count human-readable-number" title="{tags.score}">{tags.score}</span></a>
|
|
4
4
|
</h3>
|
|
5
5
|
{{{end}}}
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
</div>
|
|
26
26
|
</div>
|
|
27
27
|
</div>
|
|
28
|
-
<input type="
|
|
28
|
+
<input type="number" class="form-control" id="indexInput" placeholder="[[global:pagination.enter_index]]">
|
|
29
29
|
</li>
|
|
30
30
|
</ul>
|
|
31
31
|
</div>
|
|
32
|
-
</div>
|
|
32
|
+
</div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{{each tags}}}
|
|
2
|
-
<a href="{config.relative_path}/tags/{tags.
|
|
3
|
-
<span class="tag tag-item tag-class-{tags.class}" data-tag="{tags.value}"
|
|
2
|
+
<a href="{config.relative_path}/tags/{tags.valueEncoded}">
|
|
3
|
+
<span class="tag tag-item tag-class-{tags.class}" data-tag="{tags.value}">{tags.valueEscaped}</span>
|
|
4
4
|
</a>
|
|
5
5
|
{{{end}}}
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
{{{ if topics.tags.length }}}
|
|
55
55
|
<span class="tag-list hidden-xs">
|
|
56
56
|
{{{each topics.tags}}}
|
|
57
|
-
<a href="{config.relative_path}/tags/{topics.tags.
|
|
57
|
+
<a href="{config.relative_path}/tags/{topics.tags.valueEncoded}"><span class="tag tag-item tag-class-{topics.tags.class}">{topics.tags.valueEscaped}</span></a>
|
|
58
58
|
{{{end}}}
|
|
59
59
|
<small>•</small>
|
|
60
60
|
</span>
|
package/templates/topic.tpl
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<div class="topic <!-- IF widgets.sidebar.length -->col-lg-9 col-sm-12<!-- ELSE -->col-lg-12<!-- ENDIF widgets.sidebar.length -->">
|
|
8
8
|
<div class="topic-header">
|
|
9
9
|
<h1 component="post/header" class="" itemprop="name">
|
|
10
|
-
<span class="topic-title"
|
|
10
|
+
<span class="topic-title">
|
|
11
11
|
<span component="topic/labels">
|
|
12
12
|
<i component="topic/scheduled" class="fa fa-clock-o <!-- IF !scheduled -->hidden<!-- ENDIF !scheduled -->" title="[[topic:scheduled]]"></i>
|
|
13
13
|
<i component="topic/pinned" class="fa fa-thumb-tack <!-- IF (scheduled || !pinned) -->hidden<!-- ENDIF (scheduled || !pinned) -->" title="{{{ if !pinExpiry }}}[[topic:pinned]]{{{ else }}}[[topic:pinned-with-expiry, {pinExpiryISO}]]{{{ end }}}"></i>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<i class="fa fa-arrow-circle-right <!-- IF !oldCid -->hidden<!-- ENDIF !oldCid -->" title="{{{ if privileges.isAdminOrMod }}}[[topic:moved-from, {oldCategory.name}]]{{{ else }}}[[topic:moved]]{{{ end }}}"></i>
|
|
16
16
|
{{{each icons}}}{@value}{{{end}}}
|
|
17
17
|
</span>
|
|
18
|
-
{title}
|
|
18
|
+
<span component="topic/title">{title}</span>
|
|
19
19
|
</span>
|
|
20
20
|
</h1>
|
|
21
21
|
|