nodebb-theme-persona 11.3.18 → 11.3.19
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/topic.less +8 -10
- package/package.json +1 -1
package/less/topic.less
CHANGED
|
@@ -164,21 +164,19 @@
|
|
|
164
164
|
display: inline-block;
|
|
165
165
|
padding: 1rem;
|
|
166
166
|
|
|
167
|
-
&:first-child {
|
|
168
|
-
padding-right: 0.5rem;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
&:last-child {
|
|
172
|
-
padding-left: 0.5rem;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
167
|
&:focus {
|
|
176
168
|
text-decoration: none;
|
|
177
169
|
}
|
|
178
170
|
}
|
|
179
171
|
|
|
180
|
-
[component="post/upvote"].upvoted
|
|
181
|
-
|
|
172
|
+
[component="post/upvote"].upvoted {
|
|
173
|
+
border-radius: 3px;
|
|
174
|
+
border: 1px solid @brand-success;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
[component="post/downvote"].downvoted {
|
|
178
|
+
border-radius: 3px;
|
|
179
|
+
border: 1px solid @brand-warning;
|
|
182
180
|
}
|
|
183
181
|
|
|
184
182
|
[component="post/vote-count"] {
|