diff options
| author | 2025-10-21 17:49:06 -0400 | |
|---|---|---|
| committer | 2025-10-21 23:49:06 +0200 | |
| commit | eee8b8c03f93b82ed762137e386659d9da3adbf3 (patch) | |
| tree | ff8d78c35a5dabca59f8b105acad0a5e47e307ce /p | |
| parent | 59d33779d1e80ad2bb60b110377a3a18a085f95c (diff) | |
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 <alexandre@alapetite.fr>
* Update app/i18n/pl/admin.php
Co-authored-by: Inverle <inverle@proton.me>
* Minor move phpstan-type
---------
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Co-authored-by: Inverle <inverle@proton.me>
Diffstat (limited to 'p')
| -rw-r--r-- | p/themes/base-theme/frss.css | 4 | ||||
| -rw-r--r-- | p/themes/base-theme/frss.rtl.css | 4 |
2 files changed, 8 insertions, 0 deletions
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%; |
