Skip to content

Commit

Permalink
Change modifier --is-dragged-out to --is-dragging-out
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasOsti committed Oct 28, 2021
1 parent 53eddc0 commit 7ee1247
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,14 @@
(event) => {
currentDraggedItem = event.currentTarget;
sourceContainer = currentDraggedItem.parentNode;
currentDraggedItem.classList.add('ibexa-available-field-type--is-dragged-out');
currentDraggedItem.classList.add('ibexa-available-field-type--is-dragging-out');
},
false
);
availableField.addEventListener(
'dragend',
() => {
currentDraggedItem.classList.remove('ibexa-available-field-type--is-dragged-out');
currentDraggedItem.classList.remove('ibexa-available-field-type--is-dragging-out');
},
false
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
}

&--unavailable,
&--is-dragged-out {
&--is-dragging-out {
background: $ibexa-color-light-400;
opacity: 0.5;
}
Expand Down

0 comments on commit 7ee1247

Please sign in to comment.