fix overflow on firefox

Firefox 29 apparently doesn't render overflow-x correctly. However
overflow works fine, and works fine on webkit based browsers as well.

Move from overflow-x => overflow for maximum compatibility.

Change-Id: Iba7463479060dfc2b692a260322d0726fa22fd11
This commit is contained in:
Sean Dague 2014-05-01 07:27:30 -04:00
parent 02ebf9567a
commit 42cfa00954

View File

@ -49,7 +49,7 @@ li.comment_test {list-style-type: none; }
/* this is for support of 'Display Person Name In Review Category' */ /* this is for support of 'Display Person Name In Review Category' */
.cAPPROVAL { .cAPPROVAL {
max-width: 100px; max-width: 100px;
overflow-x: hidden; overflow: hidden;
} }
/* fixes to make this like old gerrit */ /* fixes to make this like old gerrit */
.changeTable td.dataCell { .changeTable td.dataCell {