martin-g commented on a change in pull request #361: WICKET-6666 initial
checkin of new ModalDialog
URL: https://github.com/apache/wicket/pull/361#discussion_r283631020
##########
File path:
wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalDialog.css
##########
@@ -0,0 +1,43 @@
+body.modal-dialog-open {
+
+}
+
+body.modal-dialog-no-scroll {
+ overflow: hidden;
+ height: 100%;
+ width: 100%;
+}
+
+body.modal-dialog-open-ios {
+ position: fixed;
+}
+
+.modal-dialog-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ z-index: 1000000;
Review comment:
should `z-index` be configurable ? AFAIK it is configurable in ModalWindow
because of Select widgets.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services