fix text-muted being set to default text foreground color in light mode, adjust styling of filter actions list

This commit is contained in:
Andrew Dolgov
2024-11-23 17:08:33 +03:00
parent 417065b8f5
commit 4dc0e8cd29
10 changed files with 32 additions and 8 deletions

View File

@@ -773,7 +773,7 @@ class Pref_Filters extends Handler_Protected {
$actions_summary = array_slice($actions_summary, 0, self::MAX_ACTIONS_TO_DISPLAY);
array_push($actions_summary,
sprintf(_ngettext("(+%d action)", "(+%d actions)", $actions_not_shown), $actions_not_shown));
"<em class='text-muted'>" . sprintf(_ngettext("(+%d action)", "(+%d actions)", $actions_not_shown), $actions_not_shown)) . "</em>";
}
return [implode(", ", $title_summary), implode("<br/>", $actions_summary)];