limit the width of vote columns

if you've selected the option 'Display Person Name in Review Category'
we now have *very long* names, including CI systems, which push the
columns extremely wide.

Instead limit the max-width of these columns. This will typically lead
to truncation of long names, however the disambiguation of who is
voting isn't really impacted by the truncation. Overflow set to
hidden to keep text from piling up on itself.

Change-Id: I78cc679cbbe3ca298049571bd24e08807685dcae
This commit is contained in:
Sean Dague 2014-04-28 19:08:51 -04:00
parent deed969d2d
commit 3af6ffd815

@ -45,3 +45,9 @@ a.gwt-InlineHyperlink {background: none !important}
color: #e39f00;
}
li.comment_test {list-style-type: none; }
/* this is for support of 'Display Person Name In Review Category' */
.cAPPROVAL {
max-width: 100px;
overflow-x: hidden;
}