Skip to content

Commit 9a050db

Browse files
committed
remove cursor pointer
1 parent 3ea8089 commit 9a050db

File tree

5 files changed

+6
-12
lines changed

5 files changed

+6
-12
lines changed

dist/VueFinalModal.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/VueFinalModal.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/VueFinalModal.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/VueFinalModal.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/VueFinalModal.vue

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
v-show="visibility.modal"
3232
ref="vfmContainer"
3333
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
34-
:class="[classes, { 'vfm--cursor-pointer': clickToClose }]"
34+
:class="classes"
3535
:style="styles"
3636
:aria-expanded="visibility.modal.toString()"
3737
role="dialog"
@@ -40,7 +40,7 @@
4040
>
4141
<div
4242
ref="vfmContent"
43-
class="vfm__content vfm--cursor-auto"
43+
class="vfm__content"
4444
:class="[contentClass, { 'vfm--prevent-auto': preventClick }]"
4545
:style="contentStyle"
4646
@click.stop
@@ -315,12 +315,6 @@ export default {
315315
.vfm--prevent-auto {
316316
pointer-events: auto;
317317
}
318-
.vfm--cursor-pointer {
319-
cursor: pointer;
320-
}
321-
.vfm--cursor-auto {
322-
cursor: auto;
323-
}
324318
.vfm--outline-none:focus {
325319
outline: none;
326320
}

0 commit comments

Comments
 (0)