From 9c397625b01ab1e86d5b716825086ad6c05a4369 Mon Sep 17 00:00:00 2001 From: Emmanuel <63562663+EECvision@users.noreply.github.com> Date: Thu, 28 Apr 2022 09:23:15 +0100 Subject: [PATCH] Fix source text boxes in View Source modal should have full width (#8425) Nice work, thanks! --- res/css/structures/_ViewSource.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/res/css/structures/_ViewSource.scss b/res/css/structures/_ViewSource.scss index f1ada65786..3dc3e21489 100644 --- a/res/css/structures/_ViewSource.scss +++ b/res/css/structures/_ViewSource.scss @@ -44,3 +44,7 @@ limitations under the License. .mx_ViewSource_container { max-width: calc(100% - 24px); } + +.mx_ViewSource_container .mx_CopyableText_border { + width: 100%; +}