From 4dc0e8cd29503a0a8a8979484c8b7a36f886b840 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 23 Nov 2024 17:08:33 +0300 Subject: fix text-muted being set to default text foreground color in light mode, adjust styling of filter actions list --- classes/Pref_Filters.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes') diff --git a/classes/Pref_Filters.php b/classes/Pref_Filters.php index 9b11284b4..3a51a011b 100644 --- a/classes/Pref_Filters.php +++ b/classes/Pref_Filters.php @@ -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)); + "" . sprintf(_ngettext("(+%d action)", "(+%d actions)", $actions_not_shown), $actions_not_shown)) . ""; } return [implode(", ", $title_summary), implode("
", $actions_summary)]; -- cgit v1.2.3-54-g00ecf