@@ -172,11 +172,11 @@
// Remove the selected style from all items
document.querySelectorAll('.shx-custom-variant-picker-dropdown-content div').forEach(div => {
- div.classList.remove('shx-custom-variant-picker-selected-variant');
+ div.classList.remove('shx-custom-enhanced-dropdown-variant-selected');
});
// Add the selected style to the clicked item
- event.currentTarget.classList.add('shx-custom-variant-picker-selected-variant');
+ event.currentTarget.classList.add('shx-custom-enhanced-dropdown-variant-selected');
dropdownContent.style.display = 'none';
@@ -190,7 +190,7 @@
// Close the dropdown if the user clicks outside of it
window.addEventListener('click', function(event) {
- if (!event.target.matches('.shx-custom-variant-picker-dropbtn')) {
+ if (!event.target.matches('.shx-custom-enhanced-dropdown-dropbtn')) {
if (dropdownContent.style.display === 'block') {
dropdownContent.style.display = 'none';
}