Align milestone column header with count number
This commit is contained in:
parent
ffcd20cec8
commit
e7c56dd1f6
2 changed files with 19 additions and 3 deletions
|
@ -18,6 +18,20 @@
|
|||
margin-top: -2px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
&.split {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.left {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.right {
|
||||
flex: 0 0 auto;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
|
|
|
@ -3,10 +3,12 @@
|
|||
- panel_class = primary ? 'panel-primary' : 'panel-default'
|
||||
|
||||
.panel{ class: panel_class }
|
||||
.panel-heading
|
||||
= title
|
||||
.panel-heading.split
|
||||
.left
|
||||
= title
|
||||
- if show_counter
|
||||
.pull-right= issuables.size
|
||||
.right
|
||||
= issuables.size
|
||||
|
||||
- class_prefix = dom_class(issuables).pluralize
|
||||
%ul{ class: "well-list #{class_prefix}-sortable-list", id: "#{class_prefix}-list-#{id}", "data-state" => id }
|
||||
|
|
Loading…
Reference in a new issue