diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-11-23 17:08:33 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-11-23 17:08:33 +0300 |
| commit | 4dc0e8cd29503a0a8a8979484c8b7a36f886b840 (patch) | |
| tree | da5ce6dafa6bd4e7de605c4b335e2e36d2f72573 /classes | |
| parent | 417065b8f56e5d273c80a866a67f9555073c6592 (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.php | 2 |
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)]; |