💄 feedback

This commit is contained in:
Benjamin Pasero
2018-01-08 15:20:17 +01:00
parent 204f0482da
commit efa3266cbb
2 changed files with 7 additions and 2 deletions

View File

@@ -197,7 +197,7 @@ export class FeedbackDropdown extends Dropdown {
const $buttons = $('div.form-buttons').appendTo($form);
const $hideButtonContainer = $('div.hide-button').appendTo($buttons);
const $hideButtonContainer = $('div.hide-button-container').appendTo($buttons);
this.hideButton = $('input.hide-button').type('checkbox').attr('checked', '').id('hide-button').appendTo($hideButtonContainer).getHTMLElement() as HTMLInputElement;

View File

@@ -160,7 +160,12 @@
display: flex;
}
.monaco-shell .feedback-form .form-buttons .hide-button {
.monaco-shell .feedback-form .form-buttons .hide-button-container {
display: flex;
}
.monaco-shell .feedback-form .form-buttons .hide-button-container input,
.monaco-shell .feedback-form .form-buttons .hide-button-container label {
align-self: center;
}