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

fix(data-table): update position of th cells to preserve border in Firefox #4822

Merged
merged 12 commits into from
Dec 6, 2019
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@
}

.#{$prefix}--data-table th:last-of-type {
position: relative;
// Required to preserve border
position: static;
width: auto;
}

Expand Down Expand Up @@ -250,7 +251,8 @@
}

.#{$prefix}--data-table th.#{$prefix}--table-column-checkbox {
position: relative;
// Required to preserve border
position: static;
background: $ui-03;
padding: rem(12px) $spacing-03 0 $spacing-05;
width: rem(
Expand Down