fix the scroll issue of modal dialog and wizard (#8239)

* fix the scrolling issue of dialog and wizard

* revert unwanted changes
This commit is contained in:
Alan Ren
2019-11-07 10:50:00 -08:00
committed by GitHub
parent efebd681b6
commit 7f51921176
3 changed files with 6 additions and 17 deletions

View File

@@ -8,12 +8,6 @@
flex-direction: row;
height: 100%;
width: 100%;
min-width: 500px;
min-height: 600px;
}
.modal.wide .dialogModal-body {
min-width: 800px;
}
.dialog-message-and-page-container {
@@ -33,8 +27,8 @@
flex-direction: column;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
overflow-x: auto;
overflow-y: auto;
}
.dialogModal-hidden {

View File

@@ -8,12 +8,6 @@
flex-direction: row;
height: 100%;
width: 100%;
min-width: 500px;
min-height: 600px;
}
.modal.wide .dialogModal-body {
min-width: 800px;
}
.dialog-message-and-page-container {
@@ -33,8 +27,8 @@
flex-direction: column;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
overflow-x: auto;
overflow-y: auto;
}
.dialogModal-hidden {

View File

@@ -8,6 +8,7 @@
flex-direction: column;
width: 80px;
height: 100%;
overflow: auto;
}
.hc-black .wizardNavigation-container {
@@ -90,4 +91,4 @@
.wizardNavigation-connector.invisible {
visibility: hidden;
}
}