Don't separate links (encose object list links with white-space: nowrap;)

This commit is contained in:
Roberto Rosario
2011-03-03 00:39:08 -04:00
parent ff573b2b2a
commit 470ff68332
3 changed files with 6 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
{% load i18n %}
{% load permission_tags %}
<div class="nowrap">
{% for link in object_navigation_links %}
{% if link.permissions %}
{% check_permissions request.user link.permissions.namespace link.permissions.permissions %}
@@ -15,3 +16,4 @@
{% if as_li %}</li>{% endif %}
{% endif %}
{% endfor %}
</div>

View File

@@ -47,3 +47,4 @@
2011-Mar 03
* Added document link in the OCR document queue list
* Link to manually re queue failed OCR
* Don't separate links (encose object list links with white-space: nowrap;)

View File

@@ -10,3 +10,6 @@
line-height: 23px;
}
.nowrap {
white-space: nowrap;
}