From 85b8f6fa4a153a1bdea56b2beae9b9edc2beb498 Mon Sep 17 00:00:00 2001 From: Nulo Date: Tue, 18 Apr 2023 15:20:01 -0300 Subject: [PATCH] =?UTF-8?q?limitar=20tama=C3=B1o=20links?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/editor/menubar/Linking.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/editor/menubar/Linking.svelte b/src/editor/menubar/Linking.svelte index 2741ed3..5b6fa76 100644 --- a/src/editor/menubar/Linking.svelte +++ b/src/editor/menubar/Linking.svelte @@ -99,5 +99,9 @@ display: block; text-decoration: none; line-height: 1; + text-overflow: ellipsis; + overflow: hidden; + max-width: 40vw; + white-space: nowrap; }