size modal form widget pandora_enterprise#8621

This commit is contained in:
Daniel Barbero Martin 2022-06-28 17:49:58 +02:00
parent 867c6a1415
commit c2c519694a
3 changed files with 36 additions and 4 deletions

View File

@ -629,4 +629,20 @@ class BlockHistogram extends Widget
}
/**
* Get size Modal Configuration.
*
* @return array
*/
public function getSizeModalConfiguration(): array
{
$size = [
'width' => (is_metaconsole() === true) ? 700 : 500,
'height' => 670,
];
return $size;
}
}

View File

@ -490,4 +490,20 @@ class ColorModuleTabs extends Widget
}
/**
* Get size Modal Configuration.
*
* @return array
*/
public function getSizeModalConfiguration(): array
{
$size = [
'width' => (is_metaconsole() === true) ? 700 : 600,
'height' => 560,
];
return $size;
}
}

View File

@ -646,10 +646,6 @@ form.modal-dashboard
.container-histograms {
min-width: 400px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.table-container-histograms {
width: 100%;
@ -682,3 +678,7 @@ form.modal-dashboard
margin-top: 0px !important;
padding: 0.5em 1em 0em 0em !important;
}
.select2-selection__rendered {
max-height: 75px !important;
}