summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/page_header.scss
blob: c2bd475ab90147c7d9540f837d86d9db67df38ad (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
.page-content-header {
  line-height: 34px;
  padding: 10px 0;
  margin-bottom: 0;

  @include media-breakpoint-up(sm) {
    display: flex;
    align-items: center;

    .header-main-content {
      flex: 1;
    }
  }

  .avatar {
    float: none;
    display: inline-block;
    margin-left: 2px;
    flex-shrink: 0;

    @include media-breakpoint-up(sm) {
      margin-left: 4px;
    }
  }

  .commit-committer-link,
  .commit-author-link {
    color: $gl-text-color;
    font-weight: $gl-font-weight-bold;
  }

  .commit-info {
    &.branches {
      margin-left: 8px;
    }
  }

  .ci-status-link {
    svg {
      position: relative;
      top: 2px;
      margin: 0 2px 0 3px;
    }
  }
}