Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 755 Bytes

91-Custom-Styling.md

File metadata and controls

48 lines (37 loc) · 755 Bytes

Custom Styling

With a custom theme you can change style and colors of the Top Level View.

Here are a few examples.

Blinking unhandled

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;
  }
}

Dark full screen

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;
      }
    }
  }
}