From 8a666b09d6339ba16b4a120fa4567a76a32421ce Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Thu, 16 Jan 2020 16:40:36 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B02618=20DataModel=20viewer=20:=20fix=20no?= =?UTF-8?q?=20vertical=20scrollbar=20in=20MSIE=20The=20scrollbar=20is=20pr?= =?UTF-8?q?esent=20on=20the=20right=20side=20but=20after=20viewport=20limi?= =?UTF-8?q?t=20so=20not=20visible=20!=20Can't=20change=20div.ui-layout-pan?= =?UTF-8?q?e.ui-layout-center=20width=20as=20it=20is=20calculated=20dynami?= =?UTF-8?q?cally=20by=20JS=20Layout...=20So=20added=20another=20container?= =?UTF-8?q?=20with=20a=20margin.=20The=20CSS=20rules=20are=20added=20to=20?= =?UTF-8?q?MSIE=20only=20using=20the=20media=20query=20tip=20:/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/schema.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pages/schema.php b/pages/schema.php index 6642041e3..44254ade0 100644 --- a/pages/schema.php +++ b/pages/schema.php @@ -797,6 +797,8 @@ JS } } + + /** * Display the details of a given class of objects * @@ -808,6 +810,19 @@ JS */ function DisplayClassDetails($oPage, $sClass, $sContext) { + $oPage->add('
'); // MSIE compat (N°2618) + $oPage->add_style(<<SetCurrentTab(); $oPage->SetCurrentTabContainer(); + + $oPage->add('
'); }