summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/page_header.scss
blob: 660e3dcac8d68bc2e4744fde57bb7797d89beeb8 (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
.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;
    }
  }

  .header-action-buttons {
    i {
      color: $gl-text-color-secondary;
      font-size: 13px;
      margin-right: 3px;
    }

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

      .dropdown {
        width: 100%;
      }
    }
  }

  .avatar {
    @extend .avatar-inline;
    margin-left: 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;
    }
  }

  .ci-status {
    margin-right: 10px;
  }
}