gitlab-org--gitlab-foss/app/assets/stylesheets/pages/branches.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
595 B
SCSS
Raw Normal View History

2018-03-18 12:34:35 +00:00
.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;
}
}
2018-03-18 12:34:35 +00:00
.divergence-graph,
.branch-item .controls {
flex: 0 0 auto;
white-space: nowrap;
}