summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/runners.scss
blob: 57c73295d1e39a96b7e14ffe6fb44d8e42818868 (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
.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: 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;
  }
}