summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorByron <byroncorrales@gmail.com>2011-10-20 10:26:24 -0600
committerByron <byroncorrales@gmail.com>2011-10-20 10:26:24 -0600
commitaa8c5915adede79fa0c8fcaf4e0aa00b8b0fb798 (patch)
treecc7837b62fdcbc3358bbaa27d97ed33b004a55a9
parent277705299d63716713093d28c7dd58cfb18f337d (diff)
downloadaskbot-aa8c5915adede79fa0c8fcaf4e0aa00b8b0fb798.tar.gz
askbot-aa8c5915adede79fa0c8fcaf4e0aa00b8b0fb798.tar.bz2
askbot-aa8c5915adede79fa0c8fcaf4e0aa00b8b0fb798.zip
Fixing position of ask form, and improve spaces of tags in question list
-rw-r--r--askbot/skins/common/templates/widgets/search_bar.html2
-rw-r--r--askbot/skins/default/media/style/style.css11
-rw-r--r--askbot/skins/default/templates/ask.html2
-rw-r--r--askbot/skins/default/templates/widgets/ask_form.html1
4 files changed, 8 insertions, 8 deletions
diff --git a/askbot/skins/common/templates/widgets/search_bar.html b/askbot/skins/common/templates/widgets/search_bar.html
index 0d4c66a9..5efe3860 100644
--- a/askbot/skins/common/templates/widgets/search_bar.html
+++ b/askbot/skins/common/templates/widgets/search_bar.html
@@ -43,6 +43,4 @@
</form>
</div>
{% endspaceless %}
-{% else %}
- {% include "widgets/ask_form.html" %}
{% endif %}
diff --git a/askbot/skins/default/media/style/style.css b/askbot/skins/default/media/style/style.css
index ca1a5ee6..4045420c 100644
--- a/askbot/skins/default/media/style/style.css
+++ b/askbot/skins/default/media/style/style.css
@@ -716,7 +716,8 @@ ul#searchTags {
font-weight:normal;
line-height: 26px;
padding-left: 0;
- margin-bottom:20px;
+ margin-bottom:8px;
+ display:block;
}
a {
@@ -768,8 +769,6 @@ ul#searchTags {
.tags {
margin-top: 0;
- position:absolute;
- bottom:15px;
}
.votes, .answers, .favorites, .views {
@@ -1094,11 +1093,13 @@ span.delete-icon:hover {
}
/* ----- Ask Question Form template----- */
-
+#fmask{
+ margin-bottom:30px;
+}
#askFormBar {
display:inline-block;
padding: 4px 7px 5px 0px;
- margin-top:10px;
+ margin-top:0px;
p{
width: 670px;
diff --git a/askbot/skins/default/templates/ask.html b/askbot/skins/default/templates/ask.html
index f398af04..3849ef3b 100644
--- a/askbot/skins/default/templates/ask.html
+++ b/askbot/skins/default/templates/ask.html
@@ -10,7 +10,7 @@
{% include "widgets/question_edit_tips.html" %}
{% endblock %}
{% block content %}
- Here needs to be placed the form!
+ {% include "widgets/ask_form.html" %}
{% endblock %}
{% block endjs %}
<script type='text/javascript' src='{{"/js/editor.js"|media}}'></script>
diff --git a/askbot/skins/default/templates/widgets/ask_form.html b/askbot/skins/default/templates/widgets/ask_form.html
index 606aef78..4e3346b8 100644
--- a/askbot/skins/default/templates/widgets/ask_form.html
+++ b/askbot/skins/default/templates/widgets/ask_form.html
@@ -43,4 +43,5 @@
{{ macros.checkbox_in_div(form.ask_anonymously) }}
{% endif %}
</div>
+ <div class="clean"></div>
</form>