From 07153a191e38edac27a493df9c05b9edfa0f0571 Mon Sep 17 00:00:00 2001 From: Git'Fellow Date: Thu, 5 May 2022 09:24:00 +0200 Subject: [PATCH 1/4] Fix tooltips overflow Signed-off-by: nextcloud-command --- core/css/tooltip.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/tooltip.scss b/core/css/tooltip.scss index c7bf99c7d11..8ca5155de67 100644 --- a/core/css/tooltip.scss +++ b/core/css/tooltip.scss @@ -25,7 +25,7 @@ text-shadow: none; text-transform: none; white-space: normal; - word-break: normal; + word-break: break-all; word-spacing: normal; word-wrap: normal; font-size: 12px; From 88bb5f773da61dcff56f4335fb9b7365fdb9e91f Mon Sep 17 00:00:00 2001 From: Git'Fellow Date: Thu, 5 May 2022 15:01:58 +0200 Subject: [PATCH 2/4] Switch to overflow-wrap Signed-off-by: nextcloud-command --- core/css/tooltip.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/css/tooltip.scss b/core/css/tooltip.scss index 8ca5155de67..e96aaf23ebd 100644 --- a/core/css/tooltip.scss +++ b/core/css/tooltip.scss @@ -25,9 +25,10 @@ text-shadow: none; text-transform: none; white-space: normal; - word-break: break-all; + word-break: normal; word-spacing: normal; word-wrap: normal; + overflow-wrap: anywhere; font-size: 12px; opacity: 0; z-index: 100000; From eabfd20e16cd59e931a6c224d6ff00089a625258 Mon Sep 17 00:00:00 2001 From: Git'Fellow Date: Thu, 5 May 2022 15:30:41 +0200 Subject: [PATCH 3/4] Typo Co-authored-by: Carl Schwan --- core/css/tooltip.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/tooltip.scss b/core/css/tooltip.scss index e96aaf23ebd..ce2720ffd2c 100644 --- a/core/css/tooltip.scss +++ b/core/css/tooltip.scss @@ -28,7 +28,7 @@ word-break: normal; word-spacing: normal; word-wrap: normal; - overflow-wrap: anywhere; + overflow-wrap: anywhere; font-size: 12px; opacity: 0; z-index: 100000; From c57fc7918f52a6e2afb1cb2c33b7f3f9889cd3e1 Mon Sep 17 00:00:00 2001 From: Git'Fellow Date: Thu, 5 May 2022 19:26:31 +0200 Subject: [PATCH 4/4] Fix indentation Signed-off-by: nextcloud-command --- core/css/tooltip.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/tooltip.scss b/core/css/tooltip.scss index ce2720ffd2c..5af24032064 100644 --- a/core/css/tooltip.scss +++ b/core/css/tooltip.scss @@ -28,7 +28,7 @@ word-break: normal; word-spacing: normal; word-wrap: normal; - overflow-wrap: anywhere; + overflow-wrap: anywhere; font-size: 12px; opacity: 0; z-index: 100000;