From bddae34baf088e7592e93c99ab8e34bf097dd39d Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Fri, 4 Oct 2024 15:20:47 -0500 Subject: [PATCH] Adjust for overflow --- app/assets/stylesheets/filters.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/assets/stylesheets/filters.css b/app/assets/stylesheets/filters.css index 116578e9f..e39a195a5 100644 --- a/app/assets/stylesheets/filters.css +++ b/app/assets/stylesheets/filters.css @@ -20,7 +20,16 @@ li { display: flex; margin: 0; + max-inline-size: calc(var(--panel-size) - (var(--inline-space) * 2)); + min-inline-size: 0; padding: 0; + + + a { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } } }