From bc5666cd27ee1172f89603982a44c143ceae08fd Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 14 Sep 2023 20:23:33 +0200 Subject: Fix labels in anonymous mode (#5650) * Fix labels in anonymous mode fix https://github.com/FreshRSS/FreshRSS/issues/4305 * Show all tags * Revert "Show all tags" This reverts commit 24dfba501729cea32943548bc829d3581883de50. * Add message when no labels * fixed no label style * i18n de translation * Fix in non-anomymous mode * No class in anonymous mode --------- Co-authored-by: maTh <1645099+math-GH@users.noreply.github.com> Co-authored-by: math-gh <> --- p/themes/Alternative-Dark/adark.css | 9 +++++++++ p/themes/Alternative-Dark/adark.rtl.css | 9 +++++++++ p/themes/Origine/origine.css | 9 +++++++++ p/themes/Origine/origine.rtl.css | 9 +++++++++ 4 files changed, 36 insertions(+) (limited to 'p/themes') diff --git a/p/themes/Alternative-Dark/adark.css b/p/themes/Alternative-Dark/adark.css index 1dc79df79..bc8d06104 100644 --- a/p/themes/Alternative-Dark/adark.css +++ b/p/themes/Alternative-Dark/adark.css @@ -378,6 +378,15 @@ form th { border-radius: 3px; } +.dropdown-menu input[type="checkbox"] { + margin-left: 1rem; +} + +.dropdown-menu .item .emptyLabels { + padding-left: 1rem; + padding-right: 1rem; +} + .item ~ .dropdown-header, .dropdown-section ~ .dropdown-section, .item.separator { diff --git a/p/themes/Alternative-Dark/adark.rtl.css b/p/themes/Alternative-Dark/adark.rtl.css index 32d5a3c90..2f36a3b6f 100644 --- a/p/themes/Alternative-Dark/adark.rtl.css +++ b/p/themes/Alternative-Dark/adark.rtl.css @@ -378,6 +378,15 @@ form th { border-radius: 3px; } +.dropdown-menu input[type="checkbox"] { + margin-right: 1rem; +} + +.dropdown-menu .item .emptyLabels { + padding-right: 1rem; + padding-left: 1rem; +} + .item ~ .dropdown-header, .dropdown-section ~ .dropdown-section, .item.separator { diff --git a/p/themes/Origine/origine.css b/p/themes/Origine/origine.css index 3413e54af..a0c7899b7 100644 --- a/p/themes/Origine/origine.css +++ b/p/themes/Origine/origine.css @@ -496,6 +496,15 @@ a:hover .icon { border-radius: 3px; } +.dropdown-menu input[type="checkbox"] { + margin-left: 1rem; +} + +.dropdown-menu .item .emptyLabels { + padding-left: 1rem; + padding-right: 1rem; +} + .item ~ .dropdown-header, .dropdown-section ~ .dropdown-section, .item.separator { diff --git a/p/themes/Origine/origine.rtl.css b/p/themes/Origine/origine.rtl.css index 3cbd6907e..521f1bc08 100644 --- a/p/themes/Origine/origine.rtl.css +++ b/p/themes/Origine/origine.rtl.css @@ -496,6 +496,15 @@ a:hover .icon { border-radius: 3px; } +.dropdown-menu input[type="checkbox"] { + margin-right: 1rem; +} + +.dropdown-menu .item .emptyLabels { + padding-right: 1rem; + padding-left: 1rem; +} + .item ~ .dropdown-header, .dropdown-section ~ .dropdown-section, .item.separator { -- cgit v1.2.3