Skip to content

Commit aedbe1b

Browse files
committed
fix: style zIndex
1 parent b0bbc46 commit aedbe1b

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue3-grid-drag-resize",
3-
"version": "0.5.5",
3+
"version": "0.5.6",
44
"type": "module",
55
"files": [
66
"dist"
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"vue": "^3.4.21",
31-
"vue3-grid-drag-resize": "^0.5.5"
31+
"vue3-grid-drag-resize": "^0.5.6"
3232
},
3333
"devDependencies": {
3434
"@commitlint/cli": "19.2.1",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/components/GridDragResize/style.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
&__group {
2929
position: absolute;
30+
z-index: 1;
3031
top: 0;
3132
left: 0;
3233
width: 100%;
@@ -36,6 +37,7 @@
3637
&__adjust {
3738
display: none;
3839
position: absolute;
40+
z-index: 2;
3941
width: 10px;
4042
height: 10px;
4143
border: 1px solid #666;
@@ -82,6 +84,7 @@
8284
&__remove {
8385
display: none;
8486
position: absolute;
87+
z-index: 3;
8588
top: 0;
8689
right: 0;
8790
width: 13px;
@@ -123,6 +126,7 @@
123126
&__drop {
124127
display: none;
125128
position: absolute;
129+
z-index: 3;
126130
left: calc(50% - ($width/2));
127131
width: 18px;
128132
height: 18px;

0 commit comments

Comments
 (0)