fixed visual error report wizard

This commit is contained in:
daniel 2021-04-07 15:10:32 +00:00 committed by Daniel Rodriguez
parent 8734494b7f
commit d78c276721
2 changed files with 40 additions and 1 deletions

View File

@ -1494,7 +1494,7 @@ class DiscoveryTaskList extends HTML
if (is_array($data['modules'])) {
// Alphabetically sort.
ksort($data['modules'], SORT_STRING | SORT_FLAG_CASE);
ksort($data['modules'], (SORT_STRING | SORT_FLAG_CASE));
$simple_data = array_merge(
$simple_data,

View File

@ -8446,6 +8446,45 @@ div.stat-win-spinner img {
width: 100px;
height: 100px;
}
#table_builder_wizard tr.datos > td {
width: 30%;
}
#table_builder_wizard tr.datos > td:nth-child(3) {
width: 10%;
}
#table_builder_wizard .vertical-center {
text-align: center;
}
#table_builder_wizard .container-agent-arrows {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
#table_builder_wizard .container-agent-arrows > div {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#table_builder_wizard .container-agent-arrows > div > b {
flex: 0;
margin-bottom: 20px;
width: 98%;
margin-left: 20px;
}
#table_builder_wizard .container-agent-arrows > div.vertical-center {
flex: 0;
display: block;
min-width: 50px;
}
.lign_right {
text-align: right;
}