aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJustin J. Novack <jnovack@gmail.com>2012-10-06 23:16:56 -0400
committerChristian Weiske <cweiske@cweiske.de>2012-10-24 15:00:17 +0200
commit5cc278845f05ba9219281e811784d8c30e32174c (patch)
tree1c14f4ff61ca673e5eb38bd46cf814208c193272 /data
parentb0ef26132629cfb7334fbbf7c1040761fdea305f (diff)
downloadphorkie-5cc278845f05ba9219281e811784d8c30e32174c.tar.gz
phorkie-5cc278845f05ba9219281e811784d8c30e32174c.zip
Right-align 'delete' buttons
Diffstat (limited to 'data')
-rw-r--r--data/templates/delete.htm4
-rw-r--r--data/templates/display-foot.htm4
2 files changed, 4 insertions, 4 deletions
diff --git a/data/templates/delete.htm b/data/templates/delete.htm
index 0284071..4a93549 100644
--- a/data/templates/delete.htm
+++ b/data/templates/delete.htm
@@ -21,9 +21,9 @@ Confirm deletion of repository #{{repo.id}}
<div class="span6">
<a class="btn" href="{{repo.getLink('display')}}">Cancel</a>
</div>
- <div class="span6" style="text-align: right">
+ <div class="span6">
<form method="post" action="{{repo.getLink('delete-confirm')}}" style="margin: 0px">
- <button class="btn btn-danger" type="submit">
+ <button class="btn btn-danger pull-right" type="submit">
<i class="icon-trash icon-white"></i>
Permanently delete
</button>
diff --git a/data/templates/display-foot.htm b/data/templates/display-foot.htm
index a290962..3a53adf 100644
--- a/data/templates/display-foot.htm
+++ b/data/templates/display-foot.htm
@@ -1,6 +1,6 @@
<div class="row-fluid" style="margin-top: 5ex">
- <div class="span12" style="text-align: right;">
- <a class="btn" href="{{repo.getLink('delete')}}">
+ <div class="span12">
+ <a class="btn pull-right" href="{{repo.getLink('delete')}}">
<i class="icon-trash"></i> Delete paste
</a>
</div>