From 0a61d05ba28d3ae69eab373c24582ee95c5f5848 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 3 Apr 2019 17:53:38 +0100 Subject: [PATCH] Make fixed width dialogs actually fixed width again Settings overrode that to be larger, so do the corresponding override for the other part. --- res/css/_common.scss | 2 +- res/css/views/dialogs/_SettingsDialog.scss | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/res/css/_common.scss b/res/css/_common.scss index 5537eb0fce..8abd1c6ea7 100644 --- a/res/css/_common.scss +++ b/res/css/_common.scss @@ -276,7 +276,7 @@ textarea { } .mx_Dialog_fixedWidth { - min-width: 60vw; + width: 60vw; } .mx_Dialog_staticWrapper .mx_Dialog { diff --git a/res/css/views/dialogs/_SettingsDialog.scss b/res/css/views/dialogs/_SettingsDialog.scss index 77a447e8b9..840ddb0a09 100644 --- a/res/css/views/dialogs/_SettingsDialog.scss +++ b/res/css/views/dialogs/_SettingsDialog.scss @@ -43,5 +43,8 @@ limitations under the License. margin-top: 16px; margin-bottom: 24px; } + .mx_Dialog_fixedWidth { + width: 90vw; + } } }