css: Fixes #3900 innerdocbodyu Layout broken for safari (#3906) and other browsers

This commit is contained in:
Sebastian Castro 2020-04-20 10:47:52 +02:00 committed by GitHub
parent da0ea3a29d
commit 4ceb42603e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,7 @@ body {
/* For sticky chat */
display: flex;
flex-direction: row;
height: 0; /* strange bug some browser need this to be working ok */
}
#editorcontainerbox #editorcontainer {
display: flex; /* transfer flex properties to nested elements, here the iframe */
@ -27,6 +28,7 @@ body {
}
#editorcontainerbox #editorcontainer iframe {
width: 100%;
height: 100%;
}
#editorcontainerbox .sticky-container { /* container for #users, #chat, #toc (table of content) and so on... */
display: flex;