changeset 69:bca6c51e0742

themes: minor fixes in siimple
author David Demelier <markand@malikania.fr>
date Thu, 23 Jun 2022 14:41:12 +0200
parents 87041e7df099
children 40f85c570f4c
files themes/siimple/pages/index.html themes/siimple/pages/new.html themes/siimple/pages/paste.html themes/siimple/pages/search.html
diffstat 4 files changed, 15 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/themes/siimple/pages/index.html	Thu Jun 23 14:12:02 2022 +0200
+++ b/themes/siimple/pages/index.html	Thu Jun 23 14:41:12 2022 +0200
@@ -11,6 +11,6 @@
 			</tr>
 		</thead>
 
-	@@pastes@@
+		@@pastes@@
 
-	</div>
+	</table>
--- a/themes/siimple/pages/new.html	Thu Jun 23 14:12:02 2022 +0200
+++ b/themes/siimple/pages/new.html	Thu Jun 23 14:41:12 2022 +0200
@@ -2,26 +2,26 @@
 
 	<form action="/new" method="post">
 		<label class="label">Title</label>
-		<input class="input" name="title" type="text" placeholder="Untitled" value="@@title@@" />
+		<input class="input has-mb-4" name="title" type="text" placeholder="Untitled" value="@@title@@" />
 
 		<label class="label">Author</label>
-		<input class="input" name="author" type="text" placeholder="Anonymous" />
+		<input class="input has-mb-4" name="author" type="text" placeholder="Anonymous" />
 
 		<label class="label">Language</label>
-		<select class="select" name="language">
+		<select class="select has-mb-4" name="language">
 			@@languages@@
 		</select>
 
 		<label class="label">Expires in</label>
-		<select class="select" name="duration">
+		<select class="select has-mb-4" name="duration">
 			@@durations@@
 		</select>
 
-		<label class="label" for="private-cb">
+		<label class="label has-mb-4" for="private-cb">
 			<span class="has-mr-2">Private</span>
 			<input type="checkbox" id="private-cb" class="checkbox" checked />
 		</label>
 
-		<textarea id="code" class="textarea" placeholder="What do you want to share?" rows="10" name="code">@@code@@</textarea>
-		<input type="submit" class="button has-mt-1" value="Create"></input>
+		<textarea id="code" class="textarea has-mb-4" placeholder="What do you want to share?" rows="10" name="code">@@code@@</textarea>
+		<input type="submit" class="button" value="Create"></input>
 	</form>
--- a/themes/siimple/pages/paste.html	Thu Jun 23 14:12:02 2022 +0200
+++ b/themes/siimple/pages/paste.html	Thu Jun 23 14:41:12 2022 +0200
@@ -1,7 +1,7 @@
 	<h1>@@title@@</h1>
 
-	<a class="button half" href="/fork/@@id@@">Fork</a>
-	<a class="button half" href="/download/@@id@@">Download</a>
+	<a class="button" href="/fork/@@id@@">Fork</a>
+	<a class="button" href="/download/@@id@@">Download</a>
 
 	<div class="divider"></div>
 
--- a/themes/siimple/pages/search.html	Thu Jun 23 14:12:02 2022 +0200
+++ b/themes/siimple/pages/search.html	Thu Jun 23 14:41:12 2022 +0200
@@ -2,15 +2,15 @@
 
 	<form action="/search" method="post">
 		<label class="label">Title</label>
-		<input class="input" name="title" type="text" placeholder="Title" />
+		<input class="input has-mb-4" name="title" type="text" placeholder="Title" />
 
 		<label class="label">Author</label>
-		<input class="input" name="author" type="text" placeholder="Author" />
+		<input class="input has-mb-4" name="author" type="text" placeholder="Author" />
 
 		<label class="label">Language</label>
-		<select class="select" name="language">
+		<select class="select has-mb-4" name="language">
 			@@languages@@
 		</select>
 
-		<input type="submit" class="button has-mt-2" value="Search"></input>
+		<input type="submit" class="button" value="Search"></input>
 	</form>