mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
Alerts
This commit is contained in:
parent
dbd565fd1d
commit
1a7e063c60
@ -174,7 +174,7 @@ if (is_ajax()) {
|
|||||||
5,
|
5,
|
||||||
1,
|
1,
|
||||||
'',
|
'',
|
||||||
'class="fields"',
|
'class="fields w100p"',
|
||||||
true,
|
true,
|
||||||
'',
|
'',
|
||||||
$is_management_allowed
|
$is_management_allowed
|
||||||
@ -307,7 +307,8 @@ if (is_ajax()) {
|
|||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
'fields',
|
'fields',
|
||||||
$is_management_allowed
|
$is_management_allowed,
|
||||||
|
'width: 100%;'
|
||||||
);
|
);
|
||||||
|
|
||||||
$rfield .= html_print_select(
|
$rfield .= html_print_select(
|
||||||
@ -321,7 +322,8 @@ if (is_ajax()) {
|
|||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
'fields',
|
'fields',
|
||||||
$is_management_allowed
|
$is_management_allowed,
|
||||||
|
'width: 100%;'
|
||||||
);
|
);
|
||||||
|
|
||||||
$ffield .= html_print_input_text('field'.$i.'_value[]', '', '', 10, 10, true, false, false, '', 'datepicker');
|
$ffield .= html_print_input_text('field'.$i.'_value[]', '', '', 10, 10, true, false, false, '', 'datepicker');
|
||||||
@ -487,7 +489,7 @@ if (is_ajax()) {
|
|||||||
5,
|
5,
|
||||||
1,
|
1,
|
||||||
$fv[0],
|
$fv[0],
|
||||||
'style="'.$style.'" class="fields min-height-40px"',
|
'style="'.$style.'" class="fields min-height-40px w100p"',
|
||||||
true,
|
true,
|
||||||
'',
|
'',
|
||||||
$is_management_allowed
|
$is_management_allowed
|
||||||
@ -497,7 +499,7 @@ if (is_ajax()) {
|
|||||||
5,
|
5,
|
||||||
1,
|
1,
|
||||||
$fv[0],
|
$fv[0],
|
||||||
'style="'.$style.'" class="fields_recovery min-height-40px',
|
'style="'.$style.'" class="fields_recovery min-height-40px w100p',
|
||||||
true,
|
true,
|
||||||
'',
|
'',
|
||||||
$is_management_allowed
|
$is_management_allowed
|
||||||
@ -510,7 +512,7 @@ if (is_ajax()) {
|
|||||||
5,
|
5,
|
||||||
1,
|
1,
|
||||||
'',
|
'',
|
||||||
'style="'.$style.'" class="fields min-height-40px"',
|
'style="'.$style.'" class="fields min-height-40px w100p"',
|
||||||
true,
|
true,
|
||||||
'',
|
'',
|
||||||
$is_management_allowed
|
$is_management_allowed
|
||||||
@ -520,7 +522,7 @@ if (is_ajax()) {
|
|||||||
5,
|
5,
|
||||||
1,
|
1,
|
||||||
'',
|
'',
|
||||||
'style="'.$style.'" class="fields_recovery min-height-40px"',
|
'style="'.$style.'" class="fields_recovery min-height-40px w100p"',
|
||||||
true,
|
true,
|
||||||
'',
|
'',
|
||||||
$is_management_allowed
|
$is_management_allowed
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -719,6 +719,10 @@ select:-internal-list-box {
|
|||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.w88p {
|
||||||
|
width: 88%;
|
||||||
|
}
|
||||||
|
|
||||||
.w90p {
|
.w90p {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
@ -2414,7 +2418,7 @@ ol.steps li.visited span {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ol.steps li.current {
|
ol.steps li.current {
|
||||||
border-left: 5px solid #778866;
|
border-left: 5px solid var(--primary-color);
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
background-color: #e9f3d2;
|
background-color: #e9f3d2;
|
||||||
@ -7885,6 +7889,10 @@ div.graph div.legend table {
|
|||||||
height: 10px;
|
height: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.height_15px {
|
||||||
|
height: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
.height_20px {
|
.height_20px {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
@ -11577,5 +11585,5 @@ ul.tag-editor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.max-width-100p {
|
.max-width-100p {
|
||||||
max-width: 100% !important;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -236,3 +236,7 @@ form.alert-correlation > div > ul > li.flex-flex-end > input {
|
|||||||
form.alert-correlation > div > ul > li.flex-flex-end > label {
|
form.alert-correlation > div > ul > li.flex-flex-end > label {
|
||||||
width: 50px !important;
|
width: 50px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form.alert-correlation > div > ul > li.display-grid > textarea {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user