summaryrefslogtreecommitdiff
path: root/themes/okadmin/templates/resource.liquid
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2016-09-29 16:52:22 -0400
committerJules Laplace <jules@okfoc.us>2016-09-29 16:52:22 -0400
commite100d79a376a46cfcace0ec9085d1445e5f0f0c2 (patch)
tree44a2c174b2beb44f4b17f5579026e25dddf70942 /themes/okadmin/templates/resource.liquid
parent8952389c16bd1b9c732a1afd985214cec40a6c2d (diff)
button styles
Diffstat (limited to 'themes/okadmin/templates/resource.liquid')
-rw-r--r--themes/okadmin/templates/resource.liquid8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/okadmin/templates/resource.liquid b/themes/okadmin/templates/resource.liquid
index 88f93bd..6af08b9 100644
--- a/themes/okadmin/templates/resource.liquid
+++ b/themes/okadmin/templates/resource.liquid
@@ -3,9 +3,9 @@
{% include 'partials/flash' %}
<nav class="resource-nav">
- <a href="../..">Back</a><br>
+ <a href="../.." class="btn">Back</a><br>
<br>
- <a href="/admin/{{ resource.type }}/__new__/">ADD ANOTHER</a>
+ <a href="/admin/{{ resource.type }}/__new__/" class="btn">ADD ANOTHER</a>
</nav>
<section class="resource main" data-type="{{ resource.type }}" data-id="{{ resource.id }}">
@@ -13,12 +13,12 @@
<form action="." method="POST" id="resource_form">
<input type="hidden" name="_method" value="PUT">
{% include 'partials/inputs' %}
- <label>&nbsp;</label><button type="submit">Save</button>
+ <label>&nbsp;</label><button type="submit" class="btn">Save</button>
<div class="clear"></div>
</form>
<form action="." method="POST" id="delete_form">
<input type="hidden" name="_method" value="DELETE">
- <button type="submit">Delete Record</button>
+ <button type="submit" class="btn">Delete Record</button>
</form>
</section>