summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-11-23 17:08:33 +0300
committerAndrew Dolgov <fox@fakecake.org>2024-11-23 17:08:33 +0300
commit4dc0e8cd29503a0a8a8979484c8b7a36f886b840 (patch)
treeda5ce6dafa6bd4e7de605c4b335e2e36d2f72573 /classes
parent417065b8f56e5d273c80a866a67f9555073c6592 (diff)
fix text-muted being set to default text foreground color in light mode, adjust styling of filter actions list
Diffstat (limited to 'classes')
-rw-r--r--classes/Pref_Filters.php2
1 files changed, 1 insertions, 1 deletions
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));
+ "<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)];