UI list view: Fix overflow

Removing 'ellipses' effect for long list view values. They are
rendering in too many cases, making the data hard to read. Reverting
back to using standard word wrap for long table cells.
This commit is contained in:
Brian Federle 2013-01-29 12:07:40 -08:00
parent 85de14f6a4
commit f8e1f5928f
1 changed files with 1 additions and 5 deletions

View File

@ -441,15 +441,11 @@ body.login {
div.list-view table tbody td span {
display: block;
float: left;
max-width: 160px;
max-width: 100%;
word-wrap: break-word;
text-indent: 0;
margin-left: 12px;
line-height: 15px;
overflow: hidden;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
div.list-view div.toolbar div.section-switcher div.section-select label {