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

error_tracking_index.scss « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c49bcc0348565188a7e3a6f0ac91170affc4dbc (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
@import 'page_bundles/mixins_and_variables_and_functions';

.error-list {
  .dropdown {
    min-width: auto;
  }

  .filtered-search-box .form-control {
    min-width: unset;
  }

  .sort-control {
    .btn {
      padding-right: 2rem;
    }

    .gl-dropdown-caret {
      position: absolute;
      right: 0.5rem;
      top: 0.5rem;
    }
  }

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

        &:last-child {
          background-color: var(--gray-10, $gray-10);

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

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