debian-mirror-gitlab/app/assets/stylesheets/page_bundles/branches.scss

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

42 lines
642 B
SCSS
Raw Normal View History

2023-01-13 00:05:48 +05:30
@import 'mixins_and_variables_and_functions';
2018-05-09 12:01:36 +05:30
.branch-info {
flex: auto;
min-width: 0;
overflow: hidden;
}
2017-08-17 22:00:37 +05:30
.divergence-graph {
2019-07-07 11:18:12 +05:30
$graph-side-width: 80px;
$graph-separator-width: 1px;
2017-08-17 22:00:37 +05:30
.graph-side {
2019-07-07 11:18:12 +05:30
width: $graph-side-width;
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
&.full {
width: $graph-side-width * 2 + $graph-separator-width;
}
2017-08-17 22:00:37 +05:30
.bar {
height: 4px;
2020-11-24 15:15:51 +05:30
background-color: $gray-100;
2017-08-17 22:00:37 +05:30
}
.count {
font-size: 12px;
}
}
.graph-separator {
2019-07-07 11:18:12 +05:30
width: $graph-separator-width;
2017-08-17 22:00:37 +05:30
height: 18px;
2020-11-24 15:15:51 +05:30
background-color: $gray-100;
2017-08-17 22:00:37 +05:30
}
}
2018-05-09 12:01:36 +05:30
.divergence-graph,
.branch-item .controls {
flex: 0 0 auto;
white-space: nowrap;
}