fix(ui5-dialog): fix content stretching on Safari #3068
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On Safari the style that stretches the content
flex: 1 1 auto
is not working the same way as in the rest of the browsers. Two issues have been observed:"height: 100%"
, when the"stretched"
property is set did fix the issues.FIXES: #3064
First, Wizard is scrolling between steps on Safari, inside a Dialog
Screen.Recording.2021-03-31.at.16.33.57.mov
And, the Dialog itself is improved on Safari, previously the footer and the header were not displayed correctly, when the content overflows
Before (Safari)
![Screenshot 2021-03-31 at 16 19 54](https://user-images.githubusercontent.com/15702139/113152414-c8d59400-923e-11eb-87d2-b1d62e0a32a9.png)
After (Safari)
![Screenshot 2021-03-31 at 16 20 06](https://user-images.githubusercontent.com/15702139/113152381-be1aff00-923e-11eb-857f-82b0d7bcc637.png)