Skip to content

Commit

Permalink
Bug 645177 - Main content area in new editor tools should be wider
Browse files Browse the repository at this point in the history
  • Loading branch information
gkoberger committed Mar 28, 2011
1 parent bb3634b commit fa36e72
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/editors/templates/editors/review.html
Expand Up @@ -173,11 +173,11 @@ <h3 id="file-history">{{ _('Item History') }}</h3>
{{ num }}
{% if paging %}
<div class="review-paging">
{% if paging.prev %}<a href="{{ paging.prev_url }}">{{ _('&laquo; Previous')|safe }}</a> &nbsp; {% endif %}
{% if paging.prev %}<a href="{{ paging.prev_url }}">&laquo;</a> &nbsp; {% endif %}
{% trans current=paging.current, total=paging.total %}
{{ current }} of {{ total }}
{% endtrans %}
{% if paging.next %} &nbsp; <a href="{{ paging.next_url }}">{{ _('Next &raquo;')|safe }}</a>{% endif %}
{% if paging.next %} &nbsp; <a href="{{ paging.next_url }}">&raquo;</a>{% endif %}
</div>
{% endif %}

Expand Down
9 changes: 9 additions & 0 deletions media/css/zamboni/editors.css
Expand Up @@ -418,6 +418,14 @@ tr.comments {

/* Review Page */

.primary {
width: 85%;
}

.secondary {
width: 13.49%;
}

#review-actions-form textarea,
#review-actions-form input[type=text],
#review-actions-form select {
Expand Down Expand Up @@ -574,3 +582,4 @@ tr.comments {
#editor-motd .buttons {
text-align: right;
}

0 comments on commit fa36e72

Please sign in to comment.