Skip to content

Commit

Permalink
Fix #111
Browse files Browse the repository at this point in the history
  • Loading branch information
OctoNezd committed Jun 30, 2024
1 parent 87d9bc8 commit f7742ba
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/features/posts/css/postIcons.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,12 @@ html:not(.showCommentCountOnButton) .comments {
.marknsfw-button a:not(.yes, .no),
.spoiler-button a:not(.yes, .no),
.unspoiler-button a:not(.yes, .no),
.flairselectbtn {
.flairselectbtn,
a[data-event-action="spam"],
a[data-event-action="remove"],
a[data-event-action="approve"],
a[data-event-action="lock"],
a[data-event-action="distinguish"] {
font-size: 0px !important;
}
.save-button a::before,
Expand Down Expand Up @@ -171,6 +176,21 @@ a[data-text="show all child comments"]::before,
.flairselectbtn::before {
content: "label";
}
a[data-event-action="spam"]::before {
content: "phishing";
}
a[data-event-action="remove"]::before {
content: "delete_forever";
}
a[data-event-action="approve"]::before {
content: "task_alt";
}
a[data-event-action="lock"]::before {
content: "lock";
}
a[data-event-action="distinguish"]::before {
content: "ink_highlighter";
}

.flairselection a {
display: inline !important;
Expand Down

0 comments on commit f7742ba

Please sign in to comment.