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:
parent
954b3b2fec
commit
9c08235079
|
@ -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 -->
|
<!-- 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 -->
|
<!-- 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>
|
</language>
|
||||||
|
|
|
@ -8,6 +8,9 @@ when detect side effect, fix to only apply for parameter window*/
|
||||||
.main-parameter-layout {
|
.main-parameter-layout {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
.process-modal-dialog {
|
||||||
|
width: 600px;
|
||||||
|
}
|
||||||
.process-modal-dialog .main-parameter-layout{
|
.process-modal-dialog .main-parameter-layout{
|
||||||
height: auto;
|
height: auto;
|
||||||
flex-basis: 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-overlapped.z-window-shadow,
|
||||||
.popup-dialog.z-window.z-window-noborder.z-window-highlighted.z-window-shadow{
|
.popup-dialog.z-window.z-window-noborder.z-window-highlighted.z-window-shadow{
|
||||||
width:100%;
|
width:100%;
|
||||||
|
}
|
||||||
|
.process-modal-dialog {
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue