From 89970eabebdf0d71db56b97bd1184e0b53cb565d Mon Sep 17 00:00:00 2001 From: palashb01 Date: Sun, 5 Mar 2023 12:01:44 +0530 Subject: [PATCH] settings: Wrap the content in the alert notification banner. This commit fixes the issue where, if the content inside the alert notification banner is long enough, it will wrap inside the alert banner. To prevent the email from spilling over in the notice,added the 'overflow-wrap' property set to 'anywhere'. Fixes: #23653 --- web/styles/settings.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/styles/settings.css b/web/styles/settings.css index 967a4f9fa1..b4ccd65bf1 100644 --- a/web/styles/settings.css +++ b/web/styles/settings.css @@ -541,7 +541,9 @@ input[type="checkbox"] { vertical-align: top; height: auto !important; width: auto !important; + white-space: break-spaces !important; + overflow-wrap: anywhere; background-color: transparent; border-radius: 4px; margin-top: 14px;