summaryrefslogtreecommitdiffstats
path: root/public/css/list/list-item.less
blob: 2e67e3d435c32e051a8222d31b5bc02c9cb90ac1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Style

.list-item {
  &.overdue {
    background-color: @gray-lighter;
  }

  &.overdue header > *:not(time),
  &.overdue .caption {
    opacity: 0.6;
  }

  &.overdue time {
    .rounded-corners();
    background-color: @color-critical;
    color: @text-color-on-icinga-blue;
  }

  .title {
    .state-text {
      color: @text-color;
      text-transform: uppercase;
    }
  }

  footer {
    .status-icons {
      color: @text-color-light;

      .icon {
        opacity: .5;
      }
    }
  }
}

// Layout

.list-item {
  &.overdue time {
    margin-right: -.5em;
    padding: 0 0.5em;
  }

  .visual .check-attempt {
    margin-top: .5em;
  }

  .caption {
    &.plugin-output, .plugin-output {
      font-size: 11/12em;
      line-height: 1.5*12/11em;
    }
  }

  footer {
    .status-icons {
      display: flex;
      align-items: center;
    }

    .performance-data {
      margin-left: auto;

      .inline-pie {
        display: inline-block;
        line-height: 1.5*.857em;
        height: 1em;
        width: 1em;

        &:not(:last-child) {
          margin-right: .209em;
        }
      }
    }
  }
}