summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorByron <byroncorrales@gmail.com>2011-10-28 00:07:54 -0600
committerByron <byroncorrales@gmail.com>2011-10-28 00:07:54 -0600
commit11fa160f164c4307cabcbcdf897ed6fd721a424d (patch)
tree7ca4cbd55c3671380c12555a2b0f9d6b59c8210f
parenta707ee16bde652462d8ed43e6ad10851e24cdfa6 (diff)
downloadaskbot-11fa160f164c4307cabcbcdf897ed6fd721a424d.tar.gz
askbot-11fa160f164c4307cabcbcdf897ed6fd721a424d.tar.bz2
askbot-11fa160f164c4307cabcbcdf897ed6fd721a424d.zip
closed message and preview style
-rw-r--r--askbot/skins/common/templates/question/closed_question_info.html4
-rw-r--r--askbot/skins/default/media/style/style.css29
2 files changed, 19 insertions, 14 deletions
diff --git a/askbot/skins/common/templates/question/closed_question_info.html b/askbot/skins/common/templates/question/closed_question_info.html
index db4b10ee..73ff4e47 100644
--- a/askbot/skins/common/templates/question/closed_question_info.html
+++ b/askbot/skins/common/templates/question/closed_question_info.html
@@ -1,5 +1,5 @@
<div class="question-status">
-<h3>{% trans close_reason=question.get_close_reason_display() %}The question has been closed for the following reason "{{ close_reason }}" by{% endtrans %}
-<a href="{{ question.closed_by.get_profile_url() }}">{{ question.closed_by.username }}</a>
+<h3>{% trans close_reason=question.get_close_reason_display() %}The question has been closed for the following reason <b>"{{ close_reason }}"</b> <i>by{% endtrans %}
+<a href="{{ question.closed_by.get_profile_url() }}">{{ question.closed_by.username }}</a> </i><br>
{% trans closed_at=question.closed_at %}close date {{closed_at}}{% endtrans %}</h3>
</div>
diff --git a/askbot/skins/default/media/style/style.css b/askbot/skins/default/media/style/style.css
index 90674331..a5f9649e 100644
--- a/askbot/skins/default/media/style/style.css
+++ b/askbot/skins/default/media/style/style.css
@@ -1300,8 +1300,9 @@ span.delete-icon:hover {
font-family:@trebuchet;
p{
- font-size:13px;
- margin-bottom:14px;
+ margin-bottom:14px;
+ line-height:1.4;
+ font-size:14px;
}
}
@@ -1418,9 +1419,9 @@ span.delete-icon:hover {
color:#4b4b4b;
p{
- margin-bottom:15px;
+ margin-bottom:14px;
line-height:1.4;
- font-size:13px;
+ font-size:14px;
}
a {
@@ -1545,25 +1546,26 @@ span.delete-icon:hover {
.question-img-upvote, .question-img-downvote,
.answer-img-upvote, .answer-img-downvote {
width: 25px;
- height: 25px;
+ height: 20px;
+ cursor:pointer;
}
.question-img-upvote, .answer-img-upvote {
- background: url(../images/vote-arrow-up.png)
+ background: url(../images/vote-arrow-up-new.png) no-repeat;
}
.question-img-downvote, .answer-img-downvote {
- background: url(../images/vote-arrow-down.png)
+ background: url(../images/vote-arrow-down-new.png) no-repeat;
}
.question-img-upvote:hover, .question-img-upvote.on,
.answer-img-upvote:hover, .answer-img-upvote.on {
- background: url(../images/vote-arrow-up-on.png)
+ background: url(../images/vote-arrow-up-on-new.png) no-repeat;
}
.question-img-downvote:hover, .question-img-downvote.on,
.answer-img-downvote:hover, .answer-img-downvote.on {
- background: url(../images/vote-arrow-down-on.png)
+ background: url(../images/vote-arrow-down-on-new.png) no-repeat;
}
.question-img-favorite:hover {
@@ -1773,14 +1775,17 @@ span.delete-icon:hover {
.question-status {
margin-top: 10px;
- margin-bottom:15px
+ margin-bottom:15px;
padding: 20px;
- background-color: #F5F5F5;
+ background-color: #fef7cc;
text-align: center;
+ border:#e1c04a 1px solid;
}
.question-status h3 {
- font-size: 125%;
+ font-size: 20px;
+ color:@info-text;
+ font-weight:normal;
}
.vote-buttons {