IDEMPIERE-4539 Process Popup has extra width when moving by mouse (#1979)

* set width on class process-model-dialog to set base width on 600px

* added css for media screen < 600px

* update version for idempiere.theme.default
This commit is contained in:
Zuhri Utama 2023-08-28 15:39:56 +07:00 committed by GitHub
parent 954b3b2fec
commit 9c08235079
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -57,6 +57,6 @@ Copyright (C) 2007 Ashley G Ramdass (ADempiere WebUI).
<!-- this js module doesn't actually exists and it is here for default theme version -->
<!-- since loading of js module is on demand, it doesn't cause any error as long as you don't try to load it -->
<javascript-module name="idempiere.theme.default" version="202307191000" />
<javascript-module name="idempiere.theme.default" version="202308281200" />
</language>

View File

@ -8,6 +8,9 @@ when detect side effect, fix to only apply for parameter window*/
.main-parameter-layout {
height: 100%;
}
.process-modal-dialog {
width: 600px;
}
.process-modal-dialog .main-parameter-layout{
height: auto;
flex-basis: auto;
@ -80,6 +83,9 @@ when detect side effect, fix to only apply for parameter window*/
.popup-dialog.z-window.z-window-overlapped.z-window-shadow,
.popup-dialog.z-window.z-window-noborder.z-window-highlighted.z-window-shadow{
width:100%;
}
.process-modal-dialog {
width: 100%;
}
}