From f999c484c9963b0a4cd62a2c24cc1f7d0d0e0bc5 Mon Sep 17 00:00:00 2001 From: Sijmen Date: Thu, 27 Apr 2023 15:40:40 +0200 Subject: [PATCH] Fix queue styling for long song titles --- static/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/static/style.css b/static/style.css index ca9b900..a2e24bc 100644 --- a/static/style.css +++ b/static/style.css @@ -53,6 +53,17 @@ ul.queue li.playing { background-color: #334; } +.queue .metadata { + flex: 1; +} +.queue .song__name { + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 2; /* number of lines to show */ + line-clamp: 2; + -webkit-box-orient: vertical; +} + ul.breadcrumb { display: flex; margin-bottom: 1rem;