From c18987fae3a4f54c9e85e422c9d620c0e0d0eeb3 Mon Sep 17 00:00:00 2001 From: maTh <1645099+math-GH@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:43:22 +0200 Subject: Improve/fix label management (#6212) * add the slider * the styles * add the title * improve the column layout --- p/themes/base-theme/frss.css | 16 ++++++++++++++++ p/themes/base-theme/frss.rtl.css | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) (limited to 'p/themes/base-theme') diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index 3c6ec6159..58a6ac795 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -97,6 +97,22 @@ ul, ol, dd { padding: 0; } +ul.listInColumns { + column-count: 5; + column-width: 250px; + max-width: 1700px; +} + +ul.listInColumns li { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +#tagsList { + list-style: none; +} + /*=== Titles */ h1 { margin: 1rem 0 0.5rem; diff --git a/p/themes/base-theme/frss.rtl.css b/p/themes/base-theme/frss.rtl.css index a3982402f..6936af33a 100644 --- a/p/themes/base-theme/frss.rtl.css +++ b/p/themes/base-theme/frss.rtl.css @@ -97,6 +97,22 @@ ul, ol, dd { padding: 0; } +ul.listInColumns { + column-count: 5; + column-width: 250px; + max-width: 1700px; +} + +ul.listInColumns li { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +#tagsList { + list-style: none; +} + /*=== Titles */ h1 { margin: 1rem 0 0.5rem; -- cgit v1.2.3