summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/runners.scss
blob: 5fb97b134706bdcd07b9eaaad56da3f5ad7a3391 (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
.runner-state {
  padding: 6px 12px;
  margin-right: 10px;
  color: $white-light;

  &.runner-state-shared {
    background: $runner-state-shared-bg;
  }

  &.runner-state-specific {
    background: $runner-state-specific-bg;
  }
}

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

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

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

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

  h4 {
    font-weight: $gl-font-weight-normal;
  }
}

.admin-runner-btn-group-cell {
  min-width: 150px;

  .btn-sm {
    padding: 4px 9px;
  }

  .btn-default {
    color: $gl-text-color-secondary;
  }

  .fa-pause,
  .fa-play {
    font-size: 11px;
  }
}

@media (max-width: $screen-md-max) {
  .runners-content {
    width: 100%;
    overflow: auto;
  }
}