align save, title, delete and color readonly icon
parent
08fa7c1268
commit
1c4b6d0138
|
|
@ -80,9 +80,11 @@
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
.lr_buffer {
|
.r_buffer {
|
||||||
margin-left: 5em;
|
margin-right: 1em;
|
||||||
margin-right: 5em;
|
}
|
||||||
|
.l_buffer {
|
||||||
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
.monospace {
|
.monospace {
|
||||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||||
|
|
@ -94,6 +96,9 @@
|
||||||
input, label, textarea {
|
input, label, textarea {
|
||||||
margin: initial;
|
margin: initial;
|
||||||
}
|
}
|
||||||
|
.editor-toolbar > button.preview {
|
||||||
|
color: #08c;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
function init() {
|
function init() {
|
||||||
|
|
@ -363,11 +368,15 @@
|
||||||
<article id="article" class="mia">
|
<article id="article" class="mia">
|
||||||
<div>
|
<div>
|
||||||
<h1 class="columns">
|
<h1 class="columns">
|
||||||
<input class="button-info lil_btn" type="submit" class="lr_buffer" value="SAVE" onclick="pushFile(); return false;"/>
|
<span class="r_buffer">
|
||||||
|
<input class="button-info lil_btn" type="submit" value="SAVE" onclick="pushFile(); return false;"/>
|
||||||
|
</span>
|
||||||
<span id="titlePath">
|
<span id="titlePath">
|
||||||
</span>
|
</span>
|
||||||
<span id="title" class="thic_flex" contenteditable></span>
|
<span id="title" class="thic_flex" contenteditable></span>
|
||||||
<input class="button-error lil_btn" type="submit" value="DELETE" onclick="deleteFile(); return false;"/>
|
<span class="l_buffer">
|
||||||
|
<input class="button-error lil_btn" type="submit" value="DELETE" onclick="deleteFile(); return false;"/>
|
||||||
|
</span>
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<div id="saveFeedback" style="min-height: 1.2em; text-align: right;">
|
<div id="saveFeedback" style="min-height: 1.2em; text-align: right;">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue