mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 06:29:53 +01:00
parent
85adaa44d8
commit
cb785590bc
3 changed files with 6 additions and 5 deletions
|
@ -39,7 +39,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
width: auto;
|
width: auto;
|
||||||
flex: 1 auto; /* take reminaning vertical space */
|
flex: 1 auto; /* take reminaning vertical space */
|
||||||
height: auto;
|
height: 100%;
|
||||||
right: 0;
|
right: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
html, body {
|
html, body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -23,12 +24,12 @@ body {
|
||||||
}
|
}
|
||||||
#editorcontainerbox #editorcontainer {
|
#editorcontainerbox #editorcontainer {
|
||||||
display: flex; /* transfer flex properties to nested elements, here the iframe */
|
display: flex; /* transfer flex properties to nested elements, here the iframe */
|
||||||
height: 100%;
|
height: auto;
|
||||||
flex: 1 auto;
|
flex: 1 auto;
|
||||||
}
|
}
|
||||||
#editorcontainerbox #editorcontainer iframe {
|
#editorcontainerbox #editorcontainer iframe {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: auto;
|
||||||
}
|
}
|
||||||
#editorcontainerbox .sticky-container { /* container for #users, #chat, #toc (table of content) and so on... */
|
#editorcontainerbox .sticky-container { /* container for #users, #chat, #toc (table of content) and so on... */
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#editorcontainerbox {
|
#editorcontainerbox {
|
||||||
background-color: #ffffff;
|
background-color: #f2f3f4;
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
padding-bottom: var(--editor-vertical-padding);
|
padding-bottom: var(--editor-vertical-padding);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 8px;
|
border-radius: 8px 8px 0 0;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
color: #485365;
|
color: #485365;
|
||||||
|
|
Loading…
Reference in a new issue