Can anyone give a hint, how to change the background color of the Perspective Alarm Status Table, when it’s empty, no alarms present? And also hide the annoying message “No results found” and the icon?
I tried with styles but no luck…
These are the styles you will have to change with a new theme.css (or injection)
color for a (semi-)filled table:
.ia_table__body{
background-color:#FFCCCC
}
icon+text:
.alarmTableEmptyMessage .ia_alarmStatusTableComponent__emptyMessage{
display:none
}
background color of empty table:
.ia_table__body__emptyMessage{
background-color:#FFCCCC
}