From b137c82a7a05b8eba0859cb6a3ccf8b94f973ea0 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Thu, 2 Feb 2017 00:25:18 +0000 Subject: [PATCH] tweak CSS for UnknownDeviceDialog to support scrollable content --- .../views/dialogs/_UnknownDeviceDialog.scss | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/skins/vector/css/matrix-react-sdk/views/dialogs/_UnknownDeviceDialog.scss b/src/skins/vector/css/matrix-react-sdk/views/dialogs/_UnknownDeviceDialog.scss index 3a9b64d159..579e385249 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/dialogs/_UnknownDeviceDialog.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/dialogs/_UnknownDeviceDialog.scss @@ -14,6 +14,27 @@ See the License for the specific language governing permissions and limitations under the License. */ +// CSS voodoo to support a gemini-scrollbar for the contents of the dialog +.mx_Dialog_unknownDevice .mx_Dialog { + // ideally we'd shrink the height to fit when needed, but in practice this + // is a pain in the ass. plus might as well make the dialog big given how + // important it is. + height: 100%; + + // position the gemini scrollbar nicely + padding-right: 58px; +} + +.mx_UnknownDeviceDialog { + height: 100%; + display: flex; + flex-direction: column; +} + +.mx_UnknownDeviceDialog .mx_Dialog_content { + margin-bottom: 24px; +} + .mx_UnknownDeviceDialog .mx_MemberDeviceInfo { float: right; clear: both;