ref #5614
This commit is contained in:
Max Grossman
2018-12-18 11:09:26 -05:00
parent 0328e4f9da
commit 18c021b5d5
2 changed files with 19 additions and 2 deletions
+13
View File
@@ -648,6 +648,19 @@ button.add-note svg.icon {
justify-content: center;
}
.header-container {
display: flex;
justify-content: space-between;
}
.header-block-outer {
width: 20%;
}
.header-block-close {
display: flex;
justify-content: flex-end;
}
/* Hide/Toggle collapsable sections (aka Disclosure)
------------------------------------------------------- */
+6 -2
View File
@@ -108,13 +108,17 @@ export function uiCommit(context) {
headerTitle
.append('div')
.attr('class', 'header-block')
.attr('class', 'header-block header-block-outer')
headerTitle
.append('div')
.attr('class', 'header-block header-block')
.append('h3')
.text(t('commit.title'))
headerTitle
.append('div')
.attr('class', 'header-block')
.attr('class', 'header-block header-block-outer header-block-close')
.append('button')
.attr('class', 'close')
.on('click', function() { context.enter(modeBrowse(context)); })