Commit 781ff837 authored by Giuseppe Terrasi's avatar Giuseppe Terrasi

MP: lp:~rpadovani/ubuntu-it-ask/topmenu

parents ed917c73 6ded6e8c
......@@ -1589,7 +1589,7 @@ padding: 6px;
#close-notify:hover {
text-decoration: none;
background-position: right 0;
background-position: right center;
}
.big {
......@@ -1890,7 +1890,11 @@ a.comment-edit {background-position: 0 -36px;}
a.comment-like {background-position: 0 -52px;}
a.comment-convert {background-position: 0 -69px;}
a.comment-convert-to-question {background-position: 0 -86px;}
a.comment-delete:hover, a.comment-edit:hover, a.comment-like:hover, a.comment-like.on, a.comment-convert:hover, a.comment-convert-to-question:hover {background-position: -19px 0;}
a.comment-delete:hover {background-position: -19px -18px;}
a.comment-edit:hover {background-position: -19px -36px;}
a.comment-like:hover, a.comment-like.on {background-position: -19px -52px;}
a.comment-convert:hover {background-position: -19px -69px;}
a.comment-convert-to-question:hover {background-position: -19px -86px;}
img.subscription-remove {
float:right;
......
{% extends "questions.html" %}
<!-- index.html -->
{% load general_sidebar_tags %}
{% load question_list_tags %}
{% load i18n %}
{% block fulltitle %}{{ settings.APP_TITLE }}{% endblock %}
{% block forejs %}
<style>
#header li #nav_questions {
background: url("m/light/media/images/light/header_b.png") repeat-x scroll left top #DD4814 !important;
}
#header li a#nav_questions:hover {
background: url("m/light/media/images/light/header_b_active.png") repeat-x scroll left top #B83A10 !important;
}
#header li #nav_index {
background: url("m/light/media/images/light/header_b_active.png") repeat-x scroll left top #B83A10;
}
</style>
{% endblock %}
{% block sidebar %}
{% if not request.user.is_authenticated %}
{% if settings.SHOW_WELCOME_BOX %}
<div class="boxA">
<h3>{% trans "welcome to " %}{{ settings.APP_SHORT_NAME }}</h3>
<div class="body">
{{ settings.APP_INTRO|safe }}
<div class="more"><a href="{% url about %}">{% trans "about" %} </a></div>
<div class="more"><a href="{% url faq %}">{% trans "faq" %} </a></div>
</div>
</div>
{% endif %}
{% endif %}
{% include "question_list/count.html" %}
{% sidebar_upper %}
{% if request.user.is_authenticated %}
{% tag_selector %}
{% endif %}
{% sidebar_lower %}
{% recent_tags %}
{% recent_awards %}
{% endblock %}
<!-- index.html -->
\ No newline at end of file
{% load i18n %}
{% if can_accept %}
<a id="accept-answer-{{ answer.id }}" class="ajax-command accept-answer{% if answer.nis.accepted %} on{% endif %}"
title="{% if answer.nis.accepted %}{% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}{% else %}{% trans "mark this answer as the accepted answer" %}{% endif %}"
bn:on="{% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}"
bn:off="{% trans "mark this answer as the accepted answer" %}"
href="{% url accept_answer id=answer.id %}" rel="nofollow">
</a>
{% else %}
{% if answer.nis.accepted %}
<a class="accept-answer on"
title="{% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}"
href="{% url accept_answer id=answer.id %}" rel="nofollow">
</a>
{% endif %}
{% endif %}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment