Compare commits

...

1 Commits

Author SHA1 Message Date
91a8fbeb3e Selectively apply fixed table row height. Fixes #2152 2018-08-27 10:38:31 -07:00

View File

@ -37,7 +37,6 @@ mct-table {
.mct-table { .mct-table {
tr { tr {
display: flex; // flex-flow defaults to row nowrap (which is what we want) so no need to define display: flex; // flex-flow defaults to row nowrap (which is what we want) so no need to define
height: 18px; // Needed when a row has empty values in its cells
align-items: stretch; align-items: stretch;
} }
@ -55,6 +54,7 @@ mct-table {
tbody { tbody {
tr { tr {
position: absolute; position: absolute;
height: 18px; // Needed when a row has empty values in its cells
} }
td { td {