Skip to content
This repository has been archived by the owner on Jul 10, 2018. It is now read-only.

Fix issue with long PMM list being inaccessible on Live Preview #44

Merged
merged 1 commit into from
May 19, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pimpmymatrix/resources/css/pimpmymatrix.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}