mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-20 17:18:51 +02:00
💄 N°3913 Setup : fix license content overflow in "license agreement" step
Added `white-space: pre-wrap;` in setup.scss as all pre tags inside the setup container are subject to this problem because this container has a specific width set.
This commit is contained in:
1636
css/setup.css
1636
css/setup.css
File diff suppressed because one or more lines are too long
@@ -341,6 +341,10 @@ body {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.ibo-title {
|
||||
@extend %ibo-vertically-centered-content;
|
||||
|
||||
|
||||
@@ -706,12 +706,12 @@ class WizStepLicense extends WizardStep
|
||||
{
|
||||
$aLicenses = SetupUtils::GetLicenses();
|
||||
$oPage->add_style(
|
||||
<<<EOF
|
||||
fieldset ul{
|
||||
<<<CSS
|
||||
fieldset ul {
|
||||
max-height: 18em;
|
||||
overflow: auto;
|
||||
}
|
||||
EOF
|
||||
CSS
|
||||
);
|
||||
|
||||
$oPage->add('<h2>Licenses agreements for the components of '.ITOP_APPLICATION.'</h2>');
|
||||
|
||||
Reference in New Issue
Block a user