IDEMPIERE-6047 - Fix report dialog showing the parameter cut in verti… (#2249)

* IDEMPIERE-6047 - Fix report dialog showing the parameter cut in vertically on Chrome

* IDEMPIERE-6047 - css change only for Chrome based browsers
This commit is contained in:
Diego Ruiz 2024-02-26 14:17:17 +01:00 committed by Carlos Ruiz
parent f21bd50674
commit 291aadd26e
2 changed files with 9 additions and 1 deletions

View File

@ -58,6 +58,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="202401171500" />
<javascript-module name="idempiere.theme.default" version="202402261244" />
</language>

View File

@ -33,6 +33,14 @@ when detect side effect, fix to only apply for parameter window*/
.report-option-container {
overflow-x: auto;
}
/* Chromium based browsers + Safari */
@supports (not (-moz-appearance: none)) {
.report-option-container {
height: 100% !important;
}
}
.top-parameter-layout{
overflow: auto;
padding-bottom: 2vh;