From 256dcc21bb222184d5e917ea57cec334b74b96f4 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 14 Oct 2024 09:34:16 +0200 Subject: New unicity policies for feeds with bad GUIDs (#4487) New set of unicity criteria options. New tolerance heuristic: > `$invalidGuidsTolerance` (default 0.05) The maximum ratio (rounded) of invalid GUIDs to tolerate before degrading the unicity criteria. > Example for 0.05 (5% rounded): tolerate 0 invalid GUIDs for up to 9 articles, 1 for 10, 2 for 30, 3 for 50, 4 for 70, 5 for 90, 6 for 110, etc. > The default value of 5% rounded was chosen to allow 1 invalid GUID for feeds of 10 articles, which is a frequently observed amount of articles. --- p/themes/base-theme/frss.css | 8 ++++++++ p/themes/base-theme/frss.rtl.css | 8 ++++++++ 2 files changed, 16 insertions(+) (limited to 'p') diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index 11a43bbf0..18e10ce3b 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -242,6 +242,14 @@ label { display: block; } +label.inline { + display: inline-block; +} + +label > span[title] { + text-decoration: underline dotted; +} + input:not(.w50,.w100) { max-width: 90%; width: 300px; diff --git a/p/themes/base-theme/frss.rtl.css b/p/themes/base-theme/frss.rtl.css index 7175dcebf..1d638eae3 100644 --- a/p/themes/base-theme/frss.rtl.css +++ b/p/themes/base-theme/frss.rtl.css @@ -242,6 +242,14 @@ label { display: block; } +label.inline { + display: inline-block; +} + +label > span[title] { + text-decoration: underline dotted; +} + input:not(.w50,.w100) { max-width: 90%; width: 300px; -- cgit v1.2.3