style: make wysiwyg editor full-height
This commit is contained in:
parent
7cb6e9d463
commit
5d7c2c3b50
@ -12,7 +12,8 @@
|
|||||||
|
|
||||||
<input type="hidden" data-blog-pid="@post.Id">
|
<input type="hidden" data-blog-pid="@post.Id">
|
||||||
|
|
||||||
<div style="margin-bottom: 20px;">
|
<div class="d-flex flex-column" style="height: calc(100vh - 35px)">
|
||||||
|
<div class="mb-3">
|
||||||
<button id="save-button" class="btn btn-primary"><i class="fa-solid fa-floppy-disk fa-fw"></i> Save <span class="text-muted">(Ctrl+S)</span></button>
|
<button id="save-button" class="btn btn-primary"><i class="fa-solid fa-floppy-disk fa-fw"></i> Save <span class="text-muted">(Ctrl+S)</span></button>
|
||||||
<a href="/blog/@post.Published.ToString(@"yyyy\/MM\/dd")/@post.Slug" target="_blank" class="btn btn-info"><i class="fa-solid fa-magnifying-glass"></i> Preview</a>
|
<a href="/blog/@post.Published.ToString(@"yyyy\/MM\/dd")/@post.Slug" target="_blank" class="btn btn-info"><i class="fa-solid fa-magnifying-glass"></i> Preview</a>
|
||||||
</div>
|
</div>
|
||||||
@ -28,14 +29,15 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<div class="row" style="margin-top: 20px;">
|
<div class="d-flex flex-row flex-fill">
|
||||||
<div id="editing-area" class="col-md-6 col-sm-12">
|
<div class="flex-fill mb-0 highlighting-container" style="border-right: 2px dotted #FFFFFF;">
|
||||||
<textarea id="content" spellcheck="false">@post.Body</textarea>
|
<textarea id="content" spellcheck="false">@post.Body</textarea>
|
||||||
<pre id="highlighting" aria-hidden="true"><code id="highlighting-content" class="language-markdown">@post.Body</code></pre>
|
<pre id="highlighting" aria-hidden="true"><code id="highlighting-content" class="language-markdown">@post.Body</code></pre>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 col-sm-12" style="overflow-y: scroll; background: #1E1E1E">
|
<div class="flex-fill mb-0" style="overflow-y: scroll; background: #1E1E1E; max-height: calc(100vh - 35px)">
|
||||||
<article id="article-preview" style="background: #333; max-width: 700px; margin: 20px auto; padding: 20px;">
|
<article id="article-preview" style="background: #333; max-width: 700px; margin: 20px auto; padding: 20px;">
|
||||||
@Html.Raw(Markdown.ToHtml(post.Body, MarkdownPipeline))
|
@Html.Raw(Markdown.ToHtml(post.Body, MarkdownPipeline))
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
@ -70,12 +70,12 @@ textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#highlighting, #content {
|
#highlighting, #content {
|
||||||
margin: 10px;
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 0;
|
border: 0;
|
||||||
width: calc(100% - 32px);
|
width: 100%;
|
||||||
height: 500px;
|
height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#highlighting, #content, #highlighting * {
|
#highlighting, #content, #highlighting * {
|
||||||
@ -85,7 +85,6 @@ textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#highlighting {
|
#highlighting {
|
||||||
margin-top: -511px;
|
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
background: #1E1E1E;
|
background: #1E1E1E;
|
||||||
}
|
}
|
||||||
@ -99,8 +98,32 @@ textarea {
|
|||||||
overflow-wrap: normal;
|
overflow-wrap: normal;
|
||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#highlighting-content, #highlighting-content code {
|
#highlighting-content, #highlighting-content code {
|
||||||
white-space: pre !important;
|
white-space: pre !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content, .highlighting-container .code-toolbar {
|
||||||
|
grid-column: 1;
|
||||||
|
grid-row: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlighting-container {
|
||||||
|
display: grid;
|
||||||
|
max-width: 50%;
|
||||||
|
max-height: calc(100vh - 35px);
|
||||||
|
overflow: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlighting-container .code-toolbar {
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
.toolbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user