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

alerts_list.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8546049168fdd5c4c4c035f8397e562ed748cbca (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
.alert-management-list {
  // these styles need to be deleted once GlTable component looks in GitLab same as in @gitlab/ui
  table {
    color: $gray-700;

    tr {
      td,
      th {
        @include gl-p-5;

        &.event-count {
          @include gl-pr-9;
        }
      }

      th {
        background-color: transparent;
        font-weight: $gl-font-weight-bold;
        color: $gl-gray-600;
        @include gl-border-b-1;
        @include gl-border-b-solid;
        border-color: $gray-100;
      }

      &:last-child {
        td {
          @include gl-border-0;
        }
      }
    }
  }
}