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

icons.scss « severity « components « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ddf873196a05f52614a0acbe61196bfbff8fa3f (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
.incident-severity,
.incident-management-list,
.alert-management-details {
  .icon-critical {
    @include gl-text-red-800;
  }

  .icon-high {
    @include gl-text-red-600;
  }

  .icon-medium {
    @include gl-text-orange-400;
  }

  .icon-low {
    @include gl-text-orange-300;
  }

  .icon-info {
    @include gl-text-blue-400;
  }

  .icon-unknown {
    @include gl-text-gray-200;
  }
}