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

whats_new.scss « components « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8160c0403106b65e4693a69b712de486fec14c1 (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
.whats-new-drawer {
  @include gl-shadow-none;
  overflow-y: hidden;
  width: 500px;

  .gl-infinite-scroll-legend {
    @include gl-display-none;
  }

  .gl-tabs {
    @include gl-overflow-y-auto;
  }

  .gl-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: scroll;
    align-items: stretch;

    .nav-item {
      @include gl-flex-shrink-0;

      a {
        @include gl-h-full;
        line-height: 1.5;
      }
    }
  }

  .gl-spinner-container {
    @include gl-w-full;
    @include gl-absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.whats-new-item-title-link {
  &:hover,
  &:focus,
  &:active {
    @include gl-text-gray-900;
  }
}

.whats-new-item-image {
  border-color: $gray-50;
  height: 250px;
}

.whats-new-modal-backdrop {
  z-index: 699;
}