133 lines
2.1 KiB
CSS
133 lines
2.1 KiB
CSS
body {
|
|
overflow: hidden;
|
|
}
|
|
|
|
#editor .ace_sb {
|
|
overflow-y: auto !important;
|
|
}
|
|
|
|
#darkness {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
background-color: black;
|
|
opacity: 0.8;
|
|
z-index: 1001; /* must be > 1000 to overlay ace gutter */
|
|
}
|
|
|
|
#commenttoolpanel {
|
|
visibility: hidden;
|
|
z-index: 1002; /* > 1001 to not be hidden by darkness */
|
|
}
|
|
|
|
#comment, #editor {
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
/* Set font size of both ace editors. */
|
|
font-size: 16px;
|
|
}
|
|
|
|
/*
|
|
Must set ace-line to preserve whitespace in empty lines.
|
|
Ace editor sets the height inline. The static highlight ext does not.
|
|
<div class="ace_line" style="height:15px"></div>
|
|
*/
|
|
#previewframe #contentframe .ace-github .ace_editor.ace_scroller.ace_text-layer .ace_line {
|
|
height: 15px;
|
|
}
|
|
|
|
/* Set comment to have a higher z-index
|
|
so editor doesn't display in the background. */
|
|
|
|
#comment {
|
|
visibility: hidden;
|
|
z-index: 1003; /* > 1002 to not be hidden by toolpanel */
|
|
}
|
|
|
|
#contentframe {
|
|
margin: 0 auto;
|
|
overflow: visible;
|
|
width: 90%;
|
|
}
|
|
|
|
#previewframe {
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
overflow: auto;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 10px;
|
|
right: 0;
|
|
}
|
|
|
|
.editor_bg {
|
|
position: fixed;
|
|
top: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: black;
|
|
width: 50%;
|
|
height: 100%;
|
|
z-index: -2;
|
|
}
|
|
|
|
.toolpanel_bg {
|
|
position: fixed;
|
|
background: #666;
|
|
top: 0;
|
|
height: 30px;
|
|
width: 100%;
|
|
padding: 5px 0;
|
|
margin: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
/* -- Start from notepag.es -- */
|
|
.toolpanel {
|
|
position: fixed;
|
|
background: #666;
|
|
top: 0;
|
|
height: 30px;
|
|
width: 50%;
|
|
vertical-align: middle;
|
|
padding: 5px 0;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.toolpanel.edit a.edit {
|
|
opacity: 0.4;
|
|
/* Make it appear as a link even though save
|
|
doesn't have a href attribute. */
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
}
|
|
|
|
.toolpanel a {
|
|
color: white;
|
|
text-decoration: none;
|
|
margin: 0 5px;
|
|
display: none;
|
|
padding: 4px;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.toolpanel a img {
|
|
vertical-align: middle;
|
|
margin-left: 5px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a img {
|
|
border: none;
|
|
}
|
|
/* -- End from notepag.es -- */
|