Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separator for table direct children #34861

Merged
merged 8 commits into from Sep 9, 2021
8 changes: 6 additions & 2 deletions scss/_tables.scss
Expand Up @@ -39,8 +39,8 @@
}

// Highlight border color between thead, tbody and tfoot.
> :not(:last-child) > :last-child > * {
border-bottom-color: $table-group-separator-color;
> :not(:first-child) {
border-top: (2 * $table-border-width) solid $table-group-separator-color;
}
}

Expand Down Expand Up @@ -91,6 +91,10 @@
> :not(caption) > * > * {
border-bottom-width: 0;
}

> :not(:first-child) {
border-top-width: 0;
}
}

// Zebra-striping
Expand Down