This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/master by this push:
new 012d929130 CAUSEWAY-3644: Wicket Viewer: Provide more width for modal
dialogs
012d929130 is described below
commit 012d929130f054353f4bfff1dbd2ed8f2ce76eff
Author: Andi Huber <[email protected]>
AuthorDate: Thu Nov 9 09:50:42 2023 +0100
CAUSEWAY-3644: Wicket Viewer: Provide more width for modal dialogs
---
.../viewer/wicket/ui/components/widgets/bootstrap/ModalDialog.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/viewers/wicket/ui/src/main/java/org/apache/causeway/viewer/wicket/ui/components/widgets/bootstrap/ModalDialog.java
b/viewers/wicket/ui/src/main/java/org/apache/causeway/viewer/wicket/ui/components/widgets/bootstrap/ModalDialog.java
index f099fc6230..0634472c77 100644
---
a/viewers/wicket/ui/src/main/java/org/apache/causeway/viewer/wicket/ui/components/widgets/bootstrap/ModalDialog.java
+++
b/viewers/wicket/ui/src/main/java/org/apache/causeway/viewer/wicket/ui/components/widgets/bootstrap/ModalDialog.java
@@ -90,7 +90,7 @@ implements ActionPrompt {
@Override
protected WebMarkupContainer createDialog(final String id) {
WebMarkupContainer dialog = super.createDialog(id);
- Wkt.cssAppend(dialog, "modal-dialog-center");
+ Wkt.cssAppend(dialog, "modal-lg modal-dialog-center");
dialog.add(new Draggable(new
DraggableConfig().withHandle(".modal-header").withCursor("move")));
return dialog;
}