Fix position of counters within milestone panels

This commit is contained in:
Andrew Smith 2016-11-30 23:17:21 +10:00
parent edb8ed36cd
commit fa79fefef8
3 changed files with 27 additions and 3 deletions

View File

@ -30,6 +30,26 @@
word-wrap: break-word;
}
}
.panel-heading {
line-height: $line-height-base;
padding: 14px 16px;
display: -webkit-flex;
display: flex;
.title {
-webkit-flex: 1;
-webkit-flex-grow: 1;
flex: 1;
flex-grow: 2;
}
.counter {
-webkit-flex: 1;
flex: 0;
padding-left: 16px;
}
}
}
.milestone-summary {

View File

@ -3,11 +3,11 @@
- panel_class = primary ? 'panel-primary' : 'panel-default'
.panel{ class: panel_class }
.panel-heading.split
.left
.panel-heading
.title
= title
- if show_counter
.right
.counter
= number_with_delimiter(issuables.size)
- class_prefix = dom_class(issuables).pluralize

View File

@ -0,0 +1,4 @@
---
title: Fix position of counter in milestone panels
merge_request: 7842
author: Andrew Smith (EspadaV8)