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

severity-icons.scss « alert_management « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b400e80d5c5c7144329ecf642c21a6dfe76cdfc8 (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
.alert-management-list,
.alert-management-details {
  .icon-critical {
    color: $red-800;
  }

  .icon-high {
    color: $red-600;
  }

  .icon-medium {
    color: $orange-400;
  }

  .icon-low {
    color: $orange-300;
  }

  .icon-info {
    color: $blue-400;
  }

  .icon-unknown {
    color: $gray-400;
  }
}