mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
CSS: Use auto
for iframe body height
This change makes no visual difference right now, but will matter (for reasons I don't understand) once we change `ace.js` to build the iframes by constructing elements in JavaScript (vs. writing HTML).
This commit is contained in:
parent
48e1d1c23f
commit
470f40d7db
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,6 @@
|
|||
@import url('./lists_and_indents.css');
|
||||
|
||||
html.outer-editor, html.inner-editor {
|
||||
height: auto !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
#outerdocbody {
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
html.pad, html.pad body {
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
display: flex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue