Merge branch 'ent-7104-mejoras-de-legibilidad-en-correlacion-de-eventos-2' into 'develop'

Alert correlatioin some improvements

See merge request artica/pandorafms!4147
This commit is contained in:
Daniel Rodriguez 2021-05-24 09:26:17 +00:00
commit 4e16f5712d
1 changed files with 15 additions and 1 deletions

View File

@ -2,6 +2,10 @@
display: inline-block; display: inline-block;
} }
#rules {
display: block;
}
li#li-buttons-alert-list > div { li#li-buttons-alert-list > div {
margin-left: 10px; margin-left: 10px;
} }
@ -132,11 +136,14 @@ div.target {
width: 100%; width: 100%;
} }
div.target.flex { div.target.flex {
display: block;
border: 2px dashed #ddd; border: 2px dashed #ddd;
margin-left: 0em; margin-left: 0em;
margin-top: 10px; margin-top: 10px;
padding: 1em; padding: 1em;
display: flex;
flex-direction: row;
flex-wrap: wrap;
height: fit-content;
} }
.fields, .fields,
@ -190,6 +197,8 @@ div#rules.show {
font-weight: 600; font-weight: 600;
background-color: #333; background-color: #333;
word-break: break-all; word-break: break-all;
height: fit-content;
min-height: 2.3em;
} }
.field.opacityElements { .field.opacityElements {
@ -215,6 +224,11 @@ div#rules.show {
background-color: #82b92e; background-color: #82b92e;
} }
.variable:empty::before {
content: "empty";
font-style: italic;
}
.modifier { .modifier {
background-color: #cba9d2; background-color: #cba9d2;
} }