Fix top keyline on tables with hidden col headings

The way that we collapse column headings so that they don’t take up any
vertical space is by setting their `font-size` to zero. However this
seems to take them out of the flow of the document, so their top border
also disappears. This commit sets the `font-size` to the smallest
non-zero value to avoid this.
This commit is contained in:
Chris Hill-Scott
2016-09-01 16:13:51 +01:00
parent 0967706aed
commit 32b34ddb06

View File

@@ -20,7 +20,7 @@
.table-field-headings {
th {
font-size: 0;
font-size: 1px;
}
}