feat: rename class

This commit is contained in:
mathuo 2024-01-20 10:02:18 +00:00
parent 9ccc7add41
commit 16e0971275
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281
2 changed files with 15 additions and 15 deletions

View File

@ -22,26 +22,26 @@
will-change: transform;
pointer-events: none;
&.dv-droptarget-top {
&.dv-droptarget-small-vertical {
&.dv-drop-target-top {
&.dv-drop-target-small-vertical {
border-top: 1px solid var(--dv-drag-over-border-color);
}
}
&.dv-droptarget-bottom {
&.dv-droptarget-small-vertical {
&.dv-drop-target-bottom {
&.dv-drop-target-small-vertical {
border-bottom: 1px solid var(--dv-drag-over-border-color);
}
}
&.dv-droptarget-left {
&.dv-droptarget-small-horizontal {
&.dv-drop-target-left {
&.dv-drop-target-small-horizontal {
border-left: 1px solid var(--dv-drag-over-border-color);
}
}
&.dv-droptarget-right {
&.dv-droptarget-small-horizontal {
&.dv-drop-target-right {
&.dv-drop-target-small-horizontal {
border-right: 1px solid var(--dv-drag-over-border-color);
}
}

View File

@ -271,21 +271,21 @@ export class Droptarget extends CompositeDisposable {
toggleClass(
this.overlayElement,
'dv-droptarget-small-vertical',
'dv-drop-target-small-vertical',
isSmallY
);
toggleClass(
this.overlayElement,
'dv-droptarget-small-horizontal',
'dv-drop-target-small-horizontal',
isSmallX
);
toggleClass(this.overlayElement, 'dv-droptarget-left', isLeft);
toggleClass(this.overlayElement, 'dv-droptarget-right', isRight);
toggleClass(this.overlayElement, 'dv-droptarget-top', isTop);
toggleClass(this.overlayElement, 'dv-droptarget-bottom', isBottom);
toggleClass(this.overlayElement, 'dv-drop-target-left', isLeft);
toggleClass(this.overlayElement, 'dv-drop-target-right', isRight);
toggleClass(this.overlayElement, 'dv-drop-target-top', isTop);
toggleClass(this.overlayElement, 'dv-drop-target-bottom', isBottom);
toggleClass(
this.overlayElement,
'dv-droptarget-center',
'dv-drop-target-center',
quadrant === 'center'
);
}