nodebb-theme-harmony 1.2.58 → 1.2.59

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-harmony",
3
- "version": "1.2.58",
3
+ "version": "1.2.59",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.7.0"
6
6
  },
@@ -99,16 +99,16 @@
99
99
 
100
100
  {{{ if !reputation:disabled }}}
101
101
  <div class="d-flex votes align-items-center">
102
- <a component="post/upvote" href="#" class="btn-ghost-sm {{{ if posts.upvoted }}}upvoted{{{ end }}}" title="[[topic:upvote-post]]">
102
+ <a component="post/upvote" href="#" class="btn-ghost-sm{{{ if posts.upvoted }}} upvoted{{{ end }}}" title="[[topic:upvote-post]]">
103
103
  <i class="fa fa-fw fa-chevron-up text-primary"></i>
104
104
  </a>
105
105
 
106
106
  <meta itemprop="upvoteCount" content="{posts.upvotes}">
107
107
  <meta itemprop="downvoteCount" content="{posts.downvotes}">
108
- <a href="#" class="d-inline-block px-2 mx-1 btn-ghost-sm ff-secondary" component="post/vote-count" data-votes="{posts.votes}" title="[[global:voters]]">{posts.votes}</a>
108
+ <a href="#" class="px-2 mx-1 btn-ghost-sm" component="post/vote-count" data-votes="{posts.votes}" title="[[global:voters]]">{posts.votes}</a>
109
109
 
110
110
  {{{ if !downvote:disabled }}}
111
- <a component="post/downvote" href="#" class="btn-ghost-sm {{{ if posts.downvoted }}}downvoted{{{ end }}}" title="[[topic:downvote-post]]">
111
+ <a component="post/downvote" href="#" class="btn-ghost-sm{{{ if posts.downvoted }}} downvoted{{{ end }}}" title="[[topic:downvote-post]]">
112
112
  <i class="fa fa-fw fa-chevron-down text-primary"></i>
113
113
  </a>
114
114
  {{{ end }}}