From 75fa116b74862f6e0d75b0ee7dc87c199e6188d6 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 6 Apr 2020 22:39:58 -0400 Subject: [PATCH] Fixes #94458 - timeline description overflow --- .../contrib/timeline/browser/media/timelinePane.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/timeline/browser/media/timelinePane.css b/src/vs/workbench/contrib/timeline/browser/media/timelinePane.css index 8deb44d640b..7d965ad50da 100644 --- a/src/vs/workbench/contrib/timeline/browser/media/timelinePane.css +++ b/src/vs/workbench/contrib/timeline/browser/media/timelinePane.css @@ -8,10 +8,14 @@ } .monaco-workbench .timeline-view.pane-header .description { + display: block; + font-weight: normal; margin-left: 10px; opacity: 0.6; + overflow: hidden; + text-overflow: ellipsis; text-transform: none; - font-weight: normal; + white-space: nowrap; } .monaco-workbench .timeline-view.pane-header:not(.expanded) .description { -- GitLab