diff options
| author | 2023-09-14 20:23:33 +0200 | |
|---|---|---|
| committer | 2023-09-14 20:23:33 +0200 | |
| commit | bc5666cd27ee1172f89603982a44c143ceae08fd (patch) | |
| tree | 79996cc8aa67b70b8159aaef86a5634b7e8afaab /p/themes | |
| parent | 52d87c3eaa352b765e1be3c2c0b9a3ce0bfabdc8 (diff) | |
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 <>
Diffstat (limited to 'p/themes')
| -rw-r--r-- | p/themes/Alternative-Dark/adark.css | 9 | ||||
| -rw-r--r-- | p/themes/Alternative-Dark/adark.rtl.css | 9 | ||||
| -rw-r--r-- | p/themes/Origine/origine.css | 9 | ||||
| -rw-r--r-- | p/themes/Origine/origine.rtl.css | 9 |
4 files changed, 36 insertions, 0 deletions
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 { |
