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
This commit is contained in:
Sean Dague 2014-04-29 06:44:02 -04:00
parent 6a71c7cb80
commit fe20dc7950

View File

@ -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;
}