Allow for irregular heights in file list rows

While implementing redlines on the file list, the height of a row was
set statically. This caused cases where the row has multiple lines of
text (e.g. with a file rename) to be cut off strangely.

Change-Id: I35f38f27d26bca47dc3de0f95fca993d4aba5164
This commit is contained in:
Kasper Nilsson
2017-10-10 11:34:32 -07:00
parent 63bf105c3b
commit fa17ce8a1c

View File

@@ -42,8 +42,8 @@ limitations under the License.
align-items: center;
border-top: 1px solid #ddd;
display: flex;
height: 2.25em;
padding: 0 var(--default-horizontal-margin);
min-height: 2.25em;
padding: .2em var(--default-horizontal-margin);
}
:host(.loading) .row {
opacity: .5;