From fe20dc7950a4c68be0603c393cfd661fa083cbb7 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Tue, 29 Apr 2014 06:44:02 -0400 Subject: [PATCH] gerrit css tweaks to make it more like old gerrit the front page had extra space per each gerrit change line. Set the change height back to 1em instead of 20px to provide the more compact view again. the coloring of non voting blocks is visually distracting from the actual votes, so reset their background to be whatever is behind it. Change-Id: Idcbe48b204af058e4530298c7098bdff69247a60 --- modules/openstack_project/files/gerrit/GerritSite.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/openstack_project/files/gerrit/GerritSite.css b/modules/openstack_project/files/gerrit/GerritSite.css index 54d4889f73..92f6e3b89b 100644 --- a/modules/openstack_project/files/gerrit/GerritSite.css +++ b/modules/openstack_project/files/gerrit/GerritSite.css @@ -51,3 +51,13 @@ li.comment_test {list-style-type: none; } max-width: 100px; overflow-x: hidden; } +/* fixes to make this like old gerrit */ +.changeTable td.dataCell { + height: 1em; +} + +/* don't make the non voting stand out more than the voting */ +table.infoTable td.notVotable, +.changeTable td.dataCell.labelNotApplicable { + background: inherit; +}