debian-mirror-gitlab/app/assets/stylesheets/components/severity/icons.scss

28 lines
392 B
SCSS
Raw Normal View History

2020-11-24 15:15:51 +05:30
.incident-severity,
2020-10-24 23:57:45 +05:30
.incident-management-list,
2020-05-24 23:13:21 +05:30
.alert-management-details {
.icon-critical {
2021-01-29 00:20:46 +05:30
@include gl-text-red-800;
2020-05-24 23:13:21 +05:30
}
.icon-high {
2021-01-29 00:20:46 +05:30
@include gl-text-red-600;
2020-05-24 23:13:21 +05:30
}
.icon-medium {
2021-01-29 00:20:46 +05:30
@include gl-text-orange-400;
2020-05-24 23:13:21 +05:30
}
.icon-low {
2021-01-29 00:20:46 +05:30
@include gl-text-orange-300;
2020-05-24 23:13:21 +05:30
}
.icon-info {
2021-01-29 00:20:46 +05:30
@include gl-text-blue-400;
2020-05-24 23:13:21 +05:30
}
.icon-unknown {
2021-01-29 00:20:46 +05:30
@include gl-text-gray-200;
2020-05-24 23:13:21 +05:30
}
}