From 302f5835e641d031d12bc21a63b35650e8270d10 Mon Sep 17 00:00:00 2001 From: jude Date: Sun, 23 Jul 2023 16:30:15 +0100 Subject: [PATCH] Fix wrapping on long server names --- web/static/css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/static/css/style.css b/web/static/css/style.css index e45f225..3739ff9 100644 --- a/web/static/css/style.css +++ b/web/static/css/style.css @@ -657,6 +657,12 @@ input.default-width { background-color: white; } +a.switch-pane { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + .is-locked { pointer-events: none; opacity: 0.4;