fix missing footer for backup dialog (#3056)

@MattIrv  Thanks for helping out
This commit is contained in:
Alan Ren
2018-10-30 16:17:14 -07:00
committed by Karl Burtram
parent daf347b728
commit 807fb2ed8a
2 changed files with 6 additions and 12 deletions

View File

@@ -66,14 +66,11 @@
} }
.monaco-shell .modal.flyout-dialog .modal-body, .monaco-shell .modal.flyout-dialog .modal-body,
.monaco-shell .modal.flyout-dialog .angular-modal-body { .monaco-shell .modal.flyout-dialog .angular-modal-body,
margin-bottom: auto;
height: 100%;
}
/* Style for body and footer in modal dialog. This should be applied to dialog created with angular component. */ /* Style for body and footer in modal dialog. This should be applied to dialog created with angular component. */
.monaco-shell .modal.flyout-dialog .modal-body-and-footer { .monaco-shell .modal.flyout-dialog .modal-body-and-footer {
height: 100%; flex: 1 1;
overflow: hidden;
} }
/* modl body content style(excluding dialogErrorMessage section) for angulr component dialog */ /* modl body content style(excluding dialogErrorMessage section) for angulr component dialog */
@@ -85,6 +82,8 @@
.modal.flyout-dialog .angular-form { .modal.flyout-dialog .angular-form {
height: 100%; height: 100%;
display: flex;
flex-direction: column;
} }
.modal.flyout-dialog .dialog-label { .modal.flyout-dialog .dialog-label {
@@ -105,10 +104,6 @@
padding-left: 4px; padding-left: 4px;
} }
.modal.flyout-dialog .modal-body {
overflow-y: auto;
}
.vs-dark.monaco-shell .modal.flyout-dialog .input { .vs-dark.monaco-shell .modal.flyout-dialog .input {
background-color: #3C3C3C; background-color: #3C3C3C;
} }
@@ -187,7 +182,6 @@
.modal.flyout-dialog .dialog-message-header { .modal.flyout-dialog .dialog-message-header {
overflow: hidden; overflow: hidden;
overflow-y: hidden;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
} }

View File

@@ -17,7 +17,7 @@
} }
.backup-dialog { .backup-dialog {
height: calc(100% - 15px) height: 100%
} }
.backup-dialog .advanced-main-header { .backup-dialog .advanced-main-header {