From 2ead9c35bed27bb0a9787d97331ff08bcc380feb Mon Sep 17 00:00:00 2001 From: Patrick Harrington Date: Thu, 19 May 2016 10:47:01 -0400 Subject: [PATCH] Fix issue with long PMM list being inaccessible on Live Preview where scrolling is not possible --- pimpmymatrix/resources/css/pimpmymatrix.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pimpmymatrix/resources/css/pimpmymatrix.css b/pimpmymatrix/resources/css/pimpmymatrix.css index 8cced12..8314e36 100644 --- a/pimpmymatrix/resources/css/pimpmymatrix.css +++ b/pimpmymatrix/resources/css/pimpmymatrix.css @@ -132,3 +132,10 @@ body.rtl .buttons-pimped > .btn, body.rtl .buttons-pimped > .btngroup { margin: .pimpmymatrix-secondary-menu { padding-top: 10px; } + +/* Keep long secondary menu from going offscreen on Live Preview where scrolling is not possible */ +html.noscroll .pimpmymatrix-secondary-menu { + max-height: 50%; + overflow-y: auto; + overflow-x: hidden; +} \ No newline at end of file