mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
UX: show like icon on archived posts (#7775)
This commit is contained in:
parent
feda7e1ddf
commit
2738d11f60
@ -61,9 +61,15 @@ function likeCount(attrs) {
|
||||
? "post.has_likes_title_only_you"
|
||||
: "post.has_likes_title_you"
|
||||
: "post.has_likes_title";
|
||||
const icon = attrs.yours ? "d-liked" : "";
|
||||
let icon = attrs.yours ? "d-liked" : "";
|
||||
let addContainer = attrs.yours;
|
||||
const additionalClass = attrs.yours ? "my-likes" : "regular-likes";
|
||||
|
||||
if (!attrs.showLike) {
|
||||
icon = attrs.yours ? "d-liked" : "d-unliked";
|
||||
addContainer = true;
|
||||
}
|
||||
|
||||
return {
|
||||
action: "toggleWhoLiked",
|
||||
title,
|
||||
@ -71,7 +77,7 @@ function likeCount(attrs) {
|
||||
contents: count,
|
||||
icon,
|
||||
iconRight: true,
|
||||
addContainer: attrs.yours,
|
||||
addContainer,
|
||||
titleOptions: { count: attrs.liked ? count - 1 : count }
|
||||
};
|
||||
}
|
||||
|
@ -65,8 +65,9 @@ nav.post-controls {
|
||||
}
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
&.my-likes {
|
||||
// Like count on my posts
|
||||
&.my-likes,
|
||||
&.regular-likes {
|
||||
// Like count on posts
|
||||
.d-icon {
|
||||
color: $primary-low-mid;
|
||||
padding-left: 0.45em;
|
||||
|
@ -47,7 +47,8 @@ span.badge-posts {
|
||||
+ .create-flag {
|
||||
padding: s(2 2 2 1);
|
||||
}
|
||||
&.my-likes {
|
||||
&.my-likes,
|
||||
&.regular-likes {
|
||||
display: flex;
|
||||
max-width: unset;
|
||||
padding: s(2);
|
||||
|
Loading…
Reference in New Issue
Block a user