From 425b04835694c3f9d8e5f8726a224bb0ca9c4866 Mon Sep 17 00:00:00 2001 From: Max <m.giller.dev@gmail.com> Date: Thu, 21 Oct 2021 17:25:52 +0200 Subject: [PATCH] Fixed formatting for admin page --- editor/css/editor.css | 1 + editor/editor.php | 23 +++++++++++++++++++---- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/editor/css/editor.css b/editor/css/editor.css index e1d16dc..61852b2 100644 --- a/editor/css/editor.css +++ b/editor/css/editor.css @@ -44,6 +44,7 @@ div#ks-editor .bottom-space { div#ks-editor textarea { max-width: 100%; + resize: both; letter-spacing: normal; } diff --git a/editor/editor.php b/editor/editor.php index b70f0f4..a1975e6 100644 --- a/editor/editor.php +++ b/editor/editor.php @@ -13,21 +13,31 @@ <p id="nothing-selected">Nothing selected</p> <div id="node-selected" class="hidden"> <label for="node-name" hidden>Name</label> + </br> <input type="text" id="node-name" name="node-name" placeholder="Enter name" class="bottom-space"></input> + </br> + <label for="node-description">Description</label> + </br> <textarea id="node-description" name="node-description" class="bottom-space"></textarea> + </br> <label for="node-image">Node Image</label> + </br> <img id="node-image-preview" class="preview-image" src="" /> - <input type="text" id="node-image" name="node-image" placeholder="Enter file name or URL" class="medium-width bottom-space" /> + <input type="text" id="node-image" name="node-image" placeholder="Enter file name or URL" class="bottom-space" /> + </br> <label for="node-detail-image">Info Image</label> + </br> <img id="node-detail-image-preview" class="preview-image" src="" /> - <input type="text" id="node-detail-image" name="node-detail-image" placeholder="Enter file name or URL" class="medium-width bottom-space" /> + <input type="text" id="node-detail-image" name="node-detail-image" placeholder="Enter file name or URL" class="bottom-space" /> + </br> <label for="node-type">Type</label> - <select id="node-type" name="node-type" class="bottom-space medium-width"> + </br> + <select id="node-type" name="node-type" class="bottom-space"> <option value="Vorlesung">Vorlesung</option> <option value="Algorithmus">Algorithmus</option> <option value="Definition">Definition</option> @@ -36,10 +46,14 @@ <option value="Kapitel">Kapitel</option> </select> + </br> <label for="node-video">Video</label> + </br> <input type="text" placeholder="Video URL" id="node-video" name="node-video"></input> + </br> <label for="node-references">References</label> <small>One URL per line</small> + </br> <textarea id="node-references" name="node-references" class="bottom-space"></textarea> </div> <div id="link-selected" class="hidden"> @@ -52,7 +66,7 @@ </input> </br> - + <label>Simulate physics from beginning</label> </br> <button id="reanimate-button" name="reanimate-button" class="bottom-space">Re-simulate</button> @@ -60,6 +74,7 @@ </br> <label for="stop-physics-delay">Amount of time [in seconds] after which the physics simulation is stopped</label> + </br> <input type="number" value="5" id="stop-physics-delay" name="stop-physics-delay" class="small-width"> </input> </div> -- GitLab