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

branches.scss « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: daf828fb5599ddc6a07153c80ee3b031385c6683 (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
@import 'mixins_and_variables_and_functions';

.branch-info {
  flex: auto;
  min-width: 0;
  overflow: hidden;
}

.divergence-graph {
  $graph-side-width: 80px;
  $graph-separator-width: 1px;

  .graph-side {
    width: $graph-side-width;

    &.full {
      width: $graph-side-width * 2 + $graph-separator-width;
    }

    .bar {
      height: 4px;
      background-color: $gray-100;
    }

    .count {
      font-size: 12px;
    }
  }

  .graph-separator {
    width: $graph-separator-width;
    height: 18px;
    background-color: $gray-100;
  }
}

.divergence-graph,
.branch-item .controls {
  flex: 0 0 auto;
  white-space: nowrap;
}

.branches-list .branch-item:not(:last-of-type) {
  border-bottom: 1px solid $border-color;
}

.branch-item {
  .issuable-reference {
    max-width: 92px;
  }

  .right-block {
    @media (min-width: map-get($grid-breakpoints, md)) {
      min-width: 200px;
    }
  }
}