Merge pull request #17065 from ant-design/fix-table-scrollbar-border

style: adjust bordered table header scrollbar style
This commit is contained in:
偏右 2019-06-12 18:15:35 +08:00 committed by GitHub
commit 1f6b86f37a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -599,10 +599,16 @@
opacity: 0.9999;
&::-webkit-scrollbar {
border-bottom: 1px solid @border-color-split;
border: 1px solid @border-color-split;
border-width: 0 0 1px 0;
}
}
&-bordered&-fixed-header &-scroll &-header::-webkit-scrollbar {
border: 1px solid @border-color-split;
border-width: 1px 1px 0 0;
}
&-hide-scrollbar {
// https://github.com/ant-design/ant-design/issues/4637
// https://stackoverflow.com/a/54101063