aboutsummaryrefslogtreecommitdiff
path: root/p
diff options
context:
space:
mode:
authorGravatar maTh <1645099+math-GH@users.noreply.github.com> 2024-04-01 11:43:22 +0200
committerGravatar GitHub <noreply@github.com> 2024-04-01 11:43:22 +0200
commitc18987fae3a4f54c9e85e422c9d620c0e0d0eeb3 (patch)
tree7e5c69fa0668af7af15d197c05344c8ecfdd7379 /p
parent1ae21260bb0f8f6a0578e3f706d0343607b6b483 (diff)
Improve/fix label management (#6212)
* add the slider * the styles * add the title * improve the column layout
Diffstat (limited to 'p')
-rw-r--r--p/themes/base-theme/frss.css16
-rw-r--r--p/themes/base-theme/frss.rtl.css16
2 files changed, 32 insertions, 0 deletions
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;