From 3af6ffd8152e26db7773f5f7e1f7162b4cb02d43 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 28 Apr 2014 19:08:51 -0400 Subject: [PATCH] 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 --- modules/openstack_project/files/gerrit/GerritSite.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/openstack_project/files/gerrit/GerritSite.css b/modules/openstack_project/files/gerrit/GerritSite.css index 03a48b079a..82cf7de2ac 100644 --- a/modules/openstack_project/files/gerrit/GerritSite.css +++ b/modules/openstack_project/files/gerrit/GerritSite.css @@ -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; +}