From 7fbb8b67d47f1f396d99f5bf611fe517b9c6222a Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Thu, 27 Jul 2023 15:51:58 +0300 Subject: [PATCH] Add word-break in tooltips and notifcations --- less/notification.less | 1 + less/tooltip.less | 1 + 2 files changed, 2 insertions(+) diff --git a/less/notification.less b/less/notification.less index 199c950..75746e2 100644 --- a/less/notification.less +++ b/less/notification.less @@ -29,6 +29,7 @@ border: @notification-message-border-width solid @notification-message-border; border-radius: @notification-message-border-radius; box-shadow: @notification-message-box-shadow; + word-break: break-all; } .hook-notification-message-primary() { diff --git a/less/tooltip.less b/less/tooltip.less index df18e14..6db6f1c 100644 --- a/less/tooltip.less +++ b/less/tooltip.less @@ -10,4 +10,5 @@ .hook-tooltip() { border: @tooltip-border-width solid @tooltip-border; box-shadow: @tooltip-shadow; + word-break: break-all; }