Remove outer border from overflow tables

Bug: T206762
Change-Id: Ice5e85d10d932a93094228629201afd98a9cc1f4
This commit is contained in:
Ed Sanders 2019-08-05 12:34:22 +01:00
parent 19b95d7e6f
commit b836141c9f
1 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,13 @@
table {
display: block;
width: 100% !important;
&.wikitable {
// Remove the outer table border as the table container may be
// wider than all the cells (T206762). In most cases the table
// border is not visible anyway due to border-collapse.
border: 0;
}
}
caption {