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

error_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: f97953ce824f787dfc400ecdefe8b98e5aa80a63 (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
$gray-border: 1px solid $border-color;

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

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

  @include media-breakpoint-up(sm) {
    .row-top {
      border: $gray-border;
      background-color: $gray-50;
    }
  }

  @include media-breakpoint-down(xs) {
    .table-row {
      border: $gray-border;
      border-radius: 4px;
    }

    .search-box {
      border-top: $gray-border;
      border-bottom: $gray-border;
      background-color: $gray-50;
    }

    .table-col {
      min-height: 68px;

      &::before {
        text-align: left !important;
      }

      &:first-child {
        div {
          padding: 0 !important;
          align-items: flex-end;
        }
      }

      &:last-child {
        height: 64px;
        background-color: $gray-normal;

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

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

          a {
            color: $blue-500;
            border-color: $blue-500;
          }
        }
      }
    }
  }
}