Add buttons for later
This commit is contained in:
parent
fd3ef7fbdc
commit
a3ccb537ca
|
@ -32,6 +32,9 @@ div#editor-left div#editor-header {
|
||||||
div#editor-left div#editor-charselect {
|
div#editor-left div#editor-charselect {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
}
|
}
|
||||||
|
div#editor-left div#editor-buttons {
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
div#editor-left input#editor-title {
|
div#editor-left input#editor-title {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
|
|
@ -68,6 +68,14 @@
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if article %}
|
{% if article %}
|
||||||
|
<div id="editor-buttons">
|
||||||
|
Character literals:
|
||||||
|
<button>*</button>
|
||||||
|
<button>/</button>
|
||||||
|
<button>[</button>
|
||||||
|
<button>]</button>
|
||||||
|
<button>~</button>
|
||||||
|
</div>
|
||||||
<input id="editor-title" placeholder="Title" oninput="onContentChange()" disabled>
|
<input id="editor-title" placeholder="Title" oninput="onContentChange()" disabled>
|
||||||
<textarea id="editor-content" class="fullwidth" oninput="onContentChange()" disabled></textarea>
|
<textarea id="editor-content" class="fullwidth" oninput="onContentChange()" disabled></textarea>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue