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:
parent
f21bd50674
commit
291aadd26e
|
@ -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 -->
|
<!-- 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="202401171500" />
|
<javascript-module name="idempiere.theme.default" version="202402261244" />
|
||||||
|
|
||||||
</language>
|
</language>
|
||||||
|
|
|
@ -33,6 +33,14 @@ when detect side effect, fix to only apply for parameter window*/
|
||||||
.report-option-container {
|
.report-option-container {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Chromium based browsers + Safari */
|
||||||
|
@supports (not (-moz-appearance: none)) {
|
||||||
|
.report-option-container {
|
||||||
|
height: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.top-parameter-layout{
|
.top-parameter-layout{
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-bottom: 2vh;
|
padding-bottom: 2vh;
|
||||||
|
|
Loading…
Reference in New Issue