nodebb-theme-persona 12.1.7 → 12.1.8

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/README.md CHANGED
@@ -1,7 +1,9 @@
1
1
  Persona theme for NodeBB
2
2
  ====================
3
3
 
4
- Persona is the new default theme for NodeBB as of v0.7.1
4
+ The Persona theme is the default theme for NodeBB for versions spanning v0.7.1 through to v2.x
5
+
6
+ For the v3.x release line, Persona will be a supported theme bundled with NodeBB, but will not be active by default.
5
7
 
6
8
  ## Addons
7
9
 
package/less/topic.less CHANGED
@@ -163,14 +163,14 @@
163
163
  }
164
164
  }
165
165
 
166
- [component="post/upvote"].upvoted {
167
- border-radius: 3px;
168
- border: 1px solid @brand-success;
166
+ [component="post/upvote"].upvoted i::before {
167
+ content: @fa-var-chevron-circle-up;
168
+ color: @brand-primary;
169
169
  }
170
170
 
171
- [component="post/downvote"].downvoted {
172
- border-radius: 3px;
173
- border: 1px solid @brand-warning;
171
+ [component="post/downvote"].downvoted i::before {
172
+ content: @fa-var-chevron-circle-down;
173
+ color: @brand-primary;
174
174
  }
175
175
 
176
176
  [component="post/vote-count"] {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-persona",
3
- "version": "12.1.7",
3
+ "version": "12.1.8",
4
4
  "nbbpm": {
5
5
  "compatibility": "^2.0.0"
6
6
  },