Skip to content

Commit

Permalink
Fix z-index of child media modals (#3149)
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasmolleja authored and sebastienros committed Feb 8, 2019
1 parent 29aba8b commit 7a6f73f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
#mediaModalBody.html-body-part {
z-index: 99999; //to make it visible when trumbowyg is full screen.
}
#createFolderModal, #renameMediaModal {
z-index: 100000; // required only because of the issue with z-index of trumbowyg on full screen.
}

.modal-body #media-pager {
.page-number, .media-first-button, .media-last-button {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,9 @@ ol.media-items-grid {
#mediaModalBody.html-body-part {
z-index: 99999; }

#createFolderModal, #renameMediaModal {
z-index: 100000; }

.modal-body #media-pager .page-number, .modal-body #media-pager .media-first-button, .modal-body #media-pager .media-last-button {
display: none; }

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7a6f73f

Please sign in to comment.