Merge branch 'ent-9662-second-round' of brutus.artica.es:artica/pandorafms into ent-9662-second-round

This commit is contained in:
Jonathan 2023-03-08 13:45:29 +01:00
commit 862e1c0ad3
4 changed files with 1007 additions and 317 deletions

View File

@ -174,7 +174,7 @@ if (is_ajax()) {
5,
1,
'',
'class="fields"',
'class="fields w100p"',
true,
'',
$is_management_allowed
@ -307,7 +307,8 @@ if (is_ajax()) {
false,
false,
'fields',
$is_management_allowed
$is_management_allowed,
'width: 100%;'
);
$rfield .= html_print_select(
@ -321,7 +322,8 @@ if (is_ajax()) {
false,
false,
'fields',
$is_management_allowed
$is_management_allowed,
'width: 100%;'
);
$ffield .= html_print_input_text('field'.$i.'_value[]', '', '', 10, 10, true, false, false, '', 'datepicker');
@ -487,7 +489,7 @@ if (is_ajax()) {
5,
1,
$fv[0],
'style="'.$style.'" class="fields min-height-40px"',
'style="'.$style.'" class="fields min-height-40px w100p"',
true,
'',
$is_management_allowed
@ -497,7 +499,7 @@ if (is_ajax()) {
5,
1,
$fv[0],
'style="'.$style.'" class="fields_recovery min-height-40px',
'style="'.$style.'" class="fields_recovery min-height-40px w100p',
true,
'',
$is_management_allowed
@ -510,7 +512,7 @@ if (is_ajax()) {
5,
1,
'',
'style="'.$style.'" class="fields min-height-40px"',
'style="'.$style.'" class="fields min-height-40px w100p"',
true,
'',
$is_management_allowed
@ -520,7 +522,7 @@ if (is_ajax()) {
5,
1,
'',
'style="'.$style.'" class="fields_recovery min-height-40px"',
'style="'.$style.'" class="fields_recovery min-height-40px w100p"',
true,
'',
$is_management_allowed

File diff suppressed because it is too large Load Diff

View File

@ -682,6 +682,10 @@ select:-internal-list-box {
width: 80%;
}
.w88p {
width: 88%;
}
.w90p {
width: 90%;
}
@ -2377,7 +2381,7 @@ ol.steps li.visited span {
}
ol.steps li.current {
border-left: 5px solid #778866;
border-left: 5px solid var(--primary-color);
margin-left: 0;
font-weight: bold;
background-color: #e9f3d2;
@ -7848,6 +7852,10 @@ div.graph div.legend table {
height: 10px;
}
.height_15px {
height: 15px;
}
.height_20px {
height: 20px;
}
@ -11540,5 +11548,5 @@ ul.tag-editor {
}
.max-width-100p {
max-width: 100% !important;
max-width: 100%;
}

View File

@ -236,3 +236,7 @@ form.alert-correlation > div > ul > li.flex-flex-end > input {
form.alert-correlation > div > ul > li.flex-flex-end > label {
width: 50px !important;
}
form.alert-correlation > div > ul > li.display-grid > textarea {
width: 100% !important;
}