perms-summary: fix long names overflow.

- fixes #5336
This commit is contained in:
Marcin Kuzminski 2017-08-08 13:07:42 +02:00
parent 5286b2484f
commit 434aca22cf
3 changed files with 5 additions and 2 deletions

View file

@ -456,7 +456,6 @@ ul.auth_plugins {
}
.radios {
float: right;
position: relative;
width: 405px;
}

View file

@ -147,6 +147,10 @@ table.dataTable {
white-space: nowrap;
}
&.td-name {
}
&.td-journalaction {
min-width: 300px;

View file

@ -127,7 +127,7 @@
%for k, section_perm in sorter(permissions[section].items()):
%if section_perm.split('.')[-1] != 'none' or show_all:
<tr class="perm_row ${'%s_%s' % (section, section_perm.split('.')[-1])}">
<td class="td-componentname">
<td class="td-name"">
%if section == 'repositories':
<a href="${h.route_path('repo_summary',repo_name=k)}">${k}</a>
%elif section == 'repositories_groups':