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

list.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: dc181342defaef9e8fabfe0cb9da526a8ce53fbe (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.alert-management-list {
  // consider adding these stateful variants to @gitlab-ui
  // https://gitlab.com/gitlab-org/gitlab-ui/-/merge_requests/1178
  .hover-bg-blue-50:hover {
    background-color: $blue-50;
  }

  .hover-gl-cursor-pointer:hover {
    cursor: pointer;
  }

  .hover-gl-border-b-solid:hover {
    @include gl-border-b-solid;
  }

  .hover-gl-border-blue-200:hover {
    border-color: $blue-200;
  }

  // these styles need to be deleted once GlTable component looks in GitLab same as in @gitlab/ui
  table {
    color: $gray-700;

    tr {
      &:focus {
        outline: none;
      }

      td,
      th {
        @include gl-p-5;
        border: 0; // Remove cell border styling so that we can set border styling per row

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

      th {
        background-color: transparent;
        font-weight: $gl-font-weight-bold;
        color: $gl-gray-600;
      }

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

  @include media-breakpoint-down(sm) {
    .alert-management-table {
      .table-col {
        min-height: 68px;

        &:last-child {
          background-color: $gray-10;

          &::before {
            content: none !important;
          }

          div {
            width: 100% !important;
            padding: 0 !important;
          }
        }
      }
    }
  }

  .gl-tab-nav-item {
    color: $gl-gray-600;

    > .gl-tab-counter-badge {
      color: inherit;
      @include gl-font-sm;
      background-color: $white-normal;
    }
  }
}