DEV: Update more deprecated Font Awesome icon names (#325)

* DEV: Update more deprecated Font Awesome icon names

* update to square-check


Co-authored-by: Jarek Radosz <jradosz@gmail.com>

---------

Co-authored-by: Jarek Radosz <jradosz@gmail.com>
This commit is contained in:
Kelv 2024-12-06 07:16:13 +08:00 committed by GitHub
parent 0a8df2c7f9
commit 3443539725
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 12 additions and 12 deletions

View File

@ -27,7 +27,7 @@ export default class SolvedAcceptAnswerButton extends Component {
class="post-action-menu__solved-unaccepted unaccepted"
...attributes
@action={{this.acceptAnswer}}
@icon="far-check-square"
@icon="far-square-check"
@label={{if this.showLabel "solved.solution"}}
@title="solved.accept_answer"
/>

View File

@ -54,7 +54,7 @@ export default class SolvedUnacceptAnswerButton extends Component {
class="post-action-menu__solved-accepted accepted fade-out"
...attributes
@action={{this.unacceptAnswer}}
@icon="check-square"
@icon="square-check"
@label="solved.solution"
@title="solved.unaccept_answer"
/>

View File

@ -4,7 +4,7 @@
<UserStat
@value={{@outletArgs.model.solved_count}}
@label="solved.solution_summary"
@icon="check-square"
@icon="square-check"
/>
</LinkTo>
</li>

View File

@ -21,7 +21,7 @@ function initializeWithApi(api) {
TopicStatusIcons.addObject([
"has_accepted_answer",
"far-check-square",
"far-square-check",
"solved",
]);
@ -136,7 +136,7 @@ function customizeWidgetPostMenu(api) {
return {
action: "acceptAnswer",
icon: "far-check-square",
icon: "far-square-check",
className: "unaccepted",
title: "solved.accept_answer",
label: isOp ? "solved.solution" : null,
@ -146,7 +146,7 @@ function customizeWidgetPostMenu(api) {
if (attrs.can_unaccept_answer) {
return {
action: "unacceptAnswer",
icon: "check-square",
icon: "square-check",
title: "solved.unaccept_answer",
className: "accepted fade-out",
position: "first",
@ -195,7 +195,7 @@ export default {
: formatUsername(username);
return i18n("solved.accepted_html", {
icon: iconHTML("check-square", { class: "accepted" }),
icon: iconHTML("square-check", { class: "accepted" }),
username_lower: username.toLowerCase(),
username: displayedUser,
post_path: `${this.url}/${postNumber}`,
@ -214,7 +214,7 @@ export default {
openTag: "span",
closeTag: "span",
title: i18n("topic_statuses.solved.help"),
icon: "far-check-square",
icon: "far-square-check",
key: "solved",
});
} else if (
@ -238,7 +238,7 @@ export default {
withPluginApi("0.8.10", (api) => {
api.replaceIcon(
"notification.solved.accepted_notification",
"check-square"
"square-check"
);
});

View File

@ -1,4 +1,4 @@
#topic-title .d-icon-far-check-square {
#topic-title .d-icon-far-square-check {
margin-top: 0.25em;
}

View File

@ -17,7 +17,7 @@ SQL
Badge.seed(:name) do |badge|
badge.name = "Solved 1"
badge.default_icon = "check-square"
badge.default_icon = "square-check"
badge.badge_type_id = BadgeType::Bronze
badge.default_badge_grouping_id = BadgeGrouping::Community
badge.query = first_solution_query
@ -51,7 +51,7 @@ end
].each do |name, level, count|
Badge.seed(:name) do |badge|
badge.name = name
badge.default_icon = "check-square"
badge.default_icon = "square-check"
badge.badge_type_id = level
badge.default_badge_grouping_id = BadgeGrouping::Community
badge.query = solved_query_with_count(count)