2018-05-09 12:01:36 +05:30
|
|
|
.content-list > .branch-item,
|
|
|
|
.branch-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|