Skip to content

Commit

Permalink
fix(antd/next): fix ArrayItems sortItem style (#2893)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouxinyong authored Mar 2, 2022
1 parent 9e268aa commit 1ef47b0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/antd/src/array-items/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
visibility: visible;
}

// fix https://github.com/alibaba/formily/issues/2891
.@{array-items-prefix-cls}-item {
z-index: 100000;
}

.@{array-items-prefix-cls}-card {
display: flex;
border: 1px solid @border-color-split;
Expand Down
5 changes: 5 additions & 0 deletions packages/next/src/array-items/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ $array-items-prefix-cls: '#{$css-prefix}formily-array-items';
}
}

// fix https://github.com/alibaba/formily/issues/2891
.#{$array-items-prefix-cls}-item {
z-index: 100000;
}

.#{$array-items-prefix-cls}-sort-handler {
cursor: move;
color: #888 !important;
Expand Down

0 comments on commit 1ef47b0

Please sign in to comment.