This commit is contained in:
theinterned 2011-01-07 15:59:25 -05:00
Родитель e618cffd33
Коммит 583378b7a5
2 изменённых файлов: 13 добавлений и 9 удалений

Просмотреть файл

@ -1206,6 +1206,15 @@ header {}
right: -12px; top: 0; right: -12px; top: 0;
background: transparent url(/media/images/modal-nav-arrow.png) right top no-repeat; background: transparent url(/media/images/modal-nav-arrow.png) right top no-repeat;
} }
/* INBOX / MESSAGING */
#inbox{}
#inbox #mailboxes,
#inbox #conversations{
list-style: none;
margin: 0 0 1em; padding: 0;
font-size: 14px;
line-height: 1.6;
}
/* SPLASH PAGE FOR ANON USERS */ /* SPLASH PAGE FOR ANON USERS */
#splash{} #splash{}
#splash #masthead{ #splash #masthead{

Просмотреть файл

@ -9,9 +9,7 @@
<a href="{% locale_url drumbeatmail_inbox %}">{{ _('Inbox') }}</a> <a href="{% locale_url drumbeatmail_inbox %}">{{ _('Inbox') }}</a>
</nav> </nav>
<div id="project-actions"> <!-- TODO: reusing div#id --> <div id="project-actions"> <!-- TODO: reusing div#id -->
<div id="create-message" class="button"> <a id="create-message" class="button" href="{% locale_url drumbeatmail_compose %}">{{ _('New Private Discussion') }}</a>
<a class="submit-button" href="{% locale_url drumbeatmail_compose %}">{{ _('New Private Discussion') }}</a>
</div>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}
@ -23,16 +21,13 @@
</div> </div>
<div class="panel"> <div class="panel">
<ul> <ul id="mailboxes">
<li><a href="{% locale_url drumbeatmail_inbox %}">{{ _('All Messages') }}{% if messages_inbox_count > 0 %} ({{ messages_inbox_count }}){% endif %}</a></li> <li><a href="{% locale_url drumbeatmail_inbox %}">{{ _('All Messages') }}{% if messages_inbox_count > 0 %} ({{ messages_inbox_count }}){% endif %}</a></li>
</ul>
<ul>
<li><a href="{% locale_url drumbeatmail_outbox %}">{{ _('Sent') }}</a></li> <li><a href="{% locale_url drumbeatmail_outbox %}">{{ _('Sent') }}</a></li>
</ul> </ul>
{% if senders %} {% if senders %}
<ul> <ul id="conversations">
{% for sender, count in senders %} {% for sender, count in senders %}
<li><a href="{% locale_url drumbeatmail_inbox_filtered filter=sender.username %}">{{ sender.name }} ({{ count }})</a></li> <li><a href="{% locale_url drumbeatmail_inbox_filtered filter=sender.username %}">{{ sender.name }} ({{ count }})</a></li>
{% endfor %} {% endfor %}