##// END OF EJS Templates
don't use flexbox to size `#site`...
don't use flexbox to size `#site` The approach in #7517 didn't work on Safari (as in the entire page was invisible). This is the same mechanism used to size the CodeMirror div on the edit page, and should work more reliably.

File last commit:

r19664:24be0d51
r20107:3018a185
Show More
edit.less
34 lines | 772 B | text/x-less | LessCssLexer
#filename {
font-size: 16pt;
display: table;
padding: 0px 5px;
}
#texteditor-backdrop {
padding-top: @page-header-padding;
padding-bottom: @page-header-padding;
@media not print{
min-height: @page-backdrop-height;
background-color: @page-backdrop-color;
}
#texteditor-container {
.CodeMirror-gutter, .CodeMirror-gutters {
@media print {
background-color: @body-bg;
}
@media not print {
background-color: @page-color;
}
}
@media not print{
padding: 0px;
background-color : @page-color;
min-height: @page-min-height;
.box-shadow(@global-shadow);
}
}
}