Skip to content

Commit

Permalink
Fix consistency of mail buttons icons and color
Browse files Browse the repository at this point in the history
  • Loading branch information
iliajie committed Nov 19, 2024
1 parent 7559856 commit 491b654
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions authentic-init.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1073,9 +1073,11 @@ sub get_button_style
} elsif (string_contains($keys, "mail_delete")) {
$icon = "times-circle";
$class = "danger ";
} elsif (string_contains($keys, "mail_forward")) {
} elsif (string_contains($keys, "mail_forward") ||
string_contains($keys, "view_forward")) {
$icon = "forward";
} elsif (string_contains($keys, "view_quick_all")) {
} elsif (string_contains($keys, "view_quick_all") ||
string_contains($keys, "view_reply2")) {
$icon = "reply-all";
} elsif (string_contains($keys, "view_reply")) {
$icon = "reply";
Expand Down

0 comments on commit 491b654

Please sign in to comment.