With a custom theme you can change style and colors of the Top Level View.
Here are a few examples.
So that unhandled problems are more visible.
.container.icinga-module.module-toplevelview {
.tlv-status-tile.unhandled {
animation: blinker 1.5s linear infinite;
}
}
@keyframes blinker {
50% {
opacity: 0.2;
}
}
When you open the TLV in full screen mode, background will be dark.
.fullscreen-layout {
.container.icinga-module.module-toplevelview {
color: #eee;
a:visited {
color: inherit;
}
background: #333;
.controls {
background: inherit;
.active {
color: #333;
}
}
}
}