Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runners.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b3878c91df64a41764d44592ccd3ba25388c384 (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
.runner-state {
  padding: 6px 12px;
  margin-right: 10px;
  color: #fff;

  &.runner-state-shared {
    background: #32b186;
  }

  &.runner-state-specific {
    background: #3498db;
  }
}

.runner-status-online {
  color: green;
}

.runner-status-offline {
  color: gray;
}

.runner-status-paused {
  color: red;
}

.runner {
  .btn {
    padding: 1px 6px;
  }

  h4 {
    font-weight: normal;
  }
}