Merge branch 'ent-13261-alertas-sonoras-de-eventos-con-nombres-largos-presentan-scroll-horizontal' into 'develop'
Ent 13261 alertas sonoras de eventos con nombres largos presentan scroll horizontal See merge request artica/pandorafms!7106
This commit is contained in:
commit
5bc96ce1ca
|
@ -1416,7 +1416,7 @@ function check_event_sound(settings) {
|
||||||
);
|
);
|
||||||
li.insertAdjacentHTML(
|
li.insertAdjacentHTML(
|
||||||
"beforeend",
|
"beforeend",
|
||||||
`<div class="li-title"><a href="javascript:" onclick="show_event_dialog('${b64}')">${element.message}</a></div>`
|
`<div class="li-title"><a class="sound-events-li-link" href="javascript:" onclick="show_event_dialog('${b64}')">${element.message}</a></div>`
|
||||||
);
|
);
|
||||||
li.insertAdjacentHTML(
|
li.insertAdjacentHTML(
|
||||||
"beforeend",
|
"beforeend",
|
||||||
|
|
|
@ -195,6 +195,18 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#tabs-sound-modal
|
||||||
|
div
|
||||||
|
.elements-discovered-alerts
|
||||||
|
ul
|
||||||
|
li
|
||||||
|
div.li-title
|
||||||
|
.sound-events-li-link
|
||||||
|
span {
|
||||||
|
line-break: anywhere;
|
||||||
|
line-height: 9pt;
|
||||||
|
}
|
||||||
|
|
||||||
.actions-sound-modal .buttons-sound-modal {
|
.actions-sound-modal .buttons-sound-modal {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
|
@ -511,7 +511,7 @@ function check_event_sound() {
|
||||||
);
|
);
|
||||||
li.insertAdjacentHTML(
|
li.insertAdjacentHTML(
|
||||||
"beforeend",
|
"beforeend",
|
||||||
`<div class="li-title"><a href="javascript:" onclick="open_window_dialog('`+b64+`')">${element.message}</a></div>`
|
`<div class="li-title"><a class="sound-events-li-link" href="javascript:" onclick="open_window_dialog('`+b64+`')">${element.message}</a></div>`
|
||||||
);
|
);
|
||||||
li.insertAdjacentHTML(
|
li.insertAdjacentHTML(
|
||||||
"beforeend",
|
"beforeend",
|
||||||
|
|
Loading…
Reference in New Issue