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:
@@ -42,8 +42,8 @@ limitations under the License.
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
border-top: 1px solid #ddd;
|
border-top: 1px solid #ddd;
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 2.25em;
|
min-height: 2.25em;
|
||||||
padding: 0 var(--default-horizontal-margin);
|
padding: .2em var(--default-horizontal-margin);
|
||||||
}
|
}
|
||||||
:host(.loading) .row {
|
:host(.loading) .row {
|
||||||
opacity: .5;
|
opacity: .5;
|
||||||
|
|||||||
Reference in New Issue
Block a user