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

detail_page.scss « components « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95987dbb08b2074387b3c4bf146100b7d46cc251 (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
.detail-page-header {
  padding-top: $gl-spacing-scale-4;
  color: $gl-text-color;
  line-height: 34px;
  display: flex;

  .author-link {
    white-space: nowrap;
  }

  @include media-breakpoint-down(xs) {
    display: block;
  }
}

.detail-page-header a {
  color: $gl-text-color;
}

.detail-page-header a.link,
.detail-page-header .title a {
  color: $blue-600;
}

.detail-page-header-body {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1;
  min-width: 0;

  @include media-breakpoint-up(sm) {
    padding-left: 0;
    padding-right: 0;
  }
}

.detail-page-header-actions {
  flex: 0 0 auto;

  @include media-breakpoint-down(sm) {
    width: 100%;
    margin-top: 10px;
  }
}

.detail-page-header-meta {
  flex-basis: 100%;
}

.detail-page-description {
  .title {
    margin: 0 0 $gl-spacing-scale-4;
    color: $gl-text-color;
    padding: 0 0 0.3em;
  }

  .description {
    @include clearfix;

    margin-top: 6px;

    + .edited-text {
      display: inline-block;
      margin-top: $gl-spacing-scale-4;
    }
  }

  .author-link {
    color: $gl-text-color;
  }
}