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

stacked_progress_bar.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2255d3be75bd78646d9b6494ce7e53e5602a64dc (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
.stacked-progress-bar {
  display: flex;
  height: 16px;
  border-radius: 10px;
  overflow: hidden;
  background-color: $gray-100;

  .status-unavailable,
  .status-green,
  .status-neutral,
  .status-red, {
    height: 100%;
    min-width: 40px;
    padding: 0 5px;
    font-size: $tooltip-font-size;
    font-weight: normal;
    color: $white-light;
    line-height: 16px;

    &:hover {
      cursor: pointer;
    }
  }

  .status-unavailable {
    padding: 0 10px;
    color: $gray-700;
  }

  .status-green {
    background-color: $green-500;

    &:hover {
      background-color: $green-600;
    }
  }

  .status-neutral {
    background-color: $gray-200;
    color: $gl-gray-dark;

    &:hover {
      background-color: $gray-300;
    }
  }

  .status-red {
    background-color: $red-500;

    &:hover {
      background-color: $red-600;
    }
  }
}