Cosmetics on setup (Licenses prompt)

Limit the height of the list of licences (displaying a scrollbar if
needed) so that the page fits on screen.
This commit is contained in:
Denis Flaven
2018-12-13 12:12:28 +01:00
parent d1837377a4
commit 7c0d03ea3b

View File

@@ -697,6 +697,14 @@ class WizStepLicense extends WizardStep
public function Display(WebPage $oPage)
{
$aLicenses = SetupUtils::GetLicenses();
$oPage->add_style(
<<<EOF
fieldset {
max-height: 18em;
overflow: auto;
}
EOF
);
$oPage->add('<h2>Licenses agreements for the components of '.ITOP_APPLICATION.'</h2>');
$oPage->add_style('div a.no-arrow { background:transparent; padding-left:0;}');