summaryrefslogtreecommitdiffstats
path: root/web_src/less/_actions.less
blob: 1acad06a655e48a0cc3ab3e563d5f9eb2b178f1a (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
@import "variables.less";

// TODO: the parent element's full height doesn't work well now
body > div.full.height {
  padding-bottom: 0;
}

.job-status-rotate {
  animation: job-status-rotate-keyframes 1s linear infinite;
}
@keyframes job-status-rotate-keyframes {
  100% {
    transform: rotate(360deg);
  }
}

.job-step-section {
  margin: 10px;
  .job-step-logs {
    font-family: monospace;
    .job-log-line {
      display: flex;
      .line-num {
        width: 48px;
        color: var(--color-grey-light);
        text-align: right;
      }
      .log-time {
        color: var(--color-grey-light);
        margin-left: 10px;
        white-space: nowrap;
      }
      .log-msg {
        flex: 1;
        word-break: break-all;
        white-space: break-spaces;
        margin-left: 10px;
      }
    }

    // TODO: group support
  }
}