aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2012-10-25 07:52:24 +0200
committerChristian Weiske <cweiske@cweiske.de>2012-10-25 07:52:24 +0200
commit7bfe10119a31215f131c64fa57c3ffc10a58c8eb (patch)
tree9c9944c03f452cea9330ee71b6cade5c4fcc73b8 /data
parent4e92ab575b933b67601092036a4ce8ac3557d7d2 (diff)
downloadphorkie-7bfe10119a31215f131c64fa57c3ffc10a58c8eb.tar.gz
phorkie-7bfe10119a31215f131c64fa57c3ffc10a58c8eb.zip
add padding fix to edit page
Diffstat (limited to 'data')
-rw-r--r--data/templates/base.htm2
-rw-r--r--data/templates/edit.htm1
-rw-r--r--data/templates/list.htm2
-rw-r--r--data/templates/new.htm2
4 files changed, 4 insertions, 3 deletions
diff --git a/data/templates/base.htm b/data/templates/base.htm
index e5ed087..8738bb0 100644
--- a/data/templates/base.htm
+++ b/data/templates/base.htm
@@ -73,7 +73,7 @@
{% block content %}{% endblock %}
</div>
<div class="span3">
- <div style="height: 1em"></div>
+ <div class="content-padding-fix"></div>
{% block sidebar %}{% endblock %}
</div>
</div>
diff --git a/data/templates/edit.htm b/data/templates/edit.htm
index db1f3f5..542bb34 100644
--- a/data/templates/edit.htm
+++ b/data/templates/edit.htm
@@ -6,6 +6,7 @@
{% endblock %}
{% block content %}
+<div class="content-padding-fix"></div>
<form method="post" action="{{repo.getLink('edit')}}" enctype="multipart/form-data" class="form-horizontal">
<div class="control-group">
<label class="control-label" for="description">Description</label>
diff --git a/data/templates/list.htm b/data/templates/list.htm
index c9768ff..45b32f4 100644
--- a/data/templates/list.htm
+++ b/data/templates/list.htm
@@ -7,7 +7,7 @@
{% endblock %}
{% block content %}
-<div style="height: 1em"></div>
+<div class="content-padding-fix"></div>
<ul class="nav nav-pills nav-stacked">
{% for repo in repos %}
{% include 'repo-list.htm' %}
diff --git a/data/templates/new.htm b/data/templates/new.htm
index 072ecca..88dade3 100644
--- a/data/templates/new.htm
+++ b/data/templates/new.htm
@@ -2,7 +2,7 @@
{% block title %}New paste{% endblock %}
{% block content %}
-<div style="height: 1em"></div>
+<div class="content-padding-fix"></div>
<form method="post" action="/new" enctype="multipart/form-data" class="form-horizontal">
<div class="control-group">
<label class="control-label" for="description">Description</label>