Disable double strips when table was displayed in bordered

This commit is contained in:
Chun-MingChen 2018-11-03 18:05:02 +08:00
parent 53bdd2e3a0
commit 6ff2ba35b4

View File

@ -26,4 +26,31 @@
overflow-y: auto;
}
}
// Disable double strips when table was displayed in bordered.
table.table-sticky.table-bordered {
border-left: 0;
thead,
tbody {
tr {
th {
border-top: 0;
border-right: 0;
}
td {
border-top: 0;
border-right: 0;
}
&:last-child {
td {
border-bottom: 0;
}
}
}
}
}
}