From eee8b8c03f93b82ed762137e386659d9da3adbf3 Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Tue, 21 Oct 2025 17:49:06 -0400 Subject: Add support for extension compatibility (#8081) The compatibility does support only a minimum version of FreshRSS. If we need something a bit more clever in the future, it is possible to handle a rule with a bit more complexity. See https://github.com/FreshRSS/FreshRSS/issues/5903 * Update app/Controllers/extensionController.php Co-authored-by: Alexandre Alapetite * Update app/i18n/pl/admin.php Co-authored-by: Inverle * Minor move phpstan-type --------- Co-authored-by: Alexandre Alapetite Co-authored-by: Inverle --- p/themes/base-theme/frss.css | 4 ++++ p/themes/base-theme/frss.rtl.css | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'p') diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index 48c8147e3..856c94305 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -433,6 +433,10 @@ button.as-link[disabled] { overflow-x: auto; } +.table-wrapper th { + white-space: nowrap; +} + table { margin: 0.5rem 0; max-width: 100%; diff --git a/p/themes/base-theme/frss.rtl.css b/p/themes/base-theme/frss.rtl.css index e1cc66066..bdf964607 100644 --- a/p/themes/base-theme/frss.rtl.css +++ b/p/themes/base-theme/frss.rtl.css @@ -433,6 +433,10 @@ button.as-link[disabled] { overflow-x: auto; } +.table-wrapper th { + white-space: nowrap; +} + table { margin: 0.5rem 0; max-width: 100%; -- cgit v1.2.3