From edbc6f0f31e83c49175da11540e426877af24247 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 6 Jun 2020 16:36:00 -0500 Subject: [PATCH] Truncate long filenames in notifications, fixes #151 --- app/styles/ui.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/styles/ui.scss b/app/styles/ui.scss index 17fbc0daf..8b59f4318 100644 --- a/app/styles/ui.scss +++ b/app/styles/ui.scss @@ -574,10 +574,14 @@ display: flex; flex-direction: column; justify-content: center; + overflow: hidden; + white-space: nowrap; li { display: block; padding: 4px 0; + overflow: hidden; + text-overflow: ellipsis; } a {