diff --git a/addons/web_editor/static/src/js/editor/snippets.editor.js b/addons/web_editor/static/src/js/editor/snippets.editor.js
index f95c828300b80d415e8f917c01c35781232d0d5a..d5916371cb4413b280949b1461394313c7d53083 100644
--- a/addons/web_editor/static/src/js/editor/snippets.editor.js
+++ b/addons/web_editor/static/src/js/editor/snippets.editor.js
@@ -1865,6 +1865,17 @@ var SnippetsMenu = Widget.extend({
                 $style[0].dataset.dropIn = dropInPatch.join(', ');
             }
 
+            // Fix in stable: before this, modifying a snippet's "bg_filter"
+            // also impacted its child snippets (e.g. Carousel with a
+            // "bg_filter" that contains a snippet with also a "bg_filter").
+            if ($style[0].dataset.optionName === "colorFilter") {
+                const weColorPickerEl = $style[0].querySelector('we-colorpicker');
+                weColorPickerEl.dataset.applyTo = weColorPickerEl.dataset.applyTo
+                    .split(', ')
+                    .map(selector => selector === '.o_we_bg_filter' ? '> .o_we_bg_filter' : selector)
+                    .join(', ');
+            }
+
             var target = $style.data('target');
             var noCheck = $style.data('no-check');
             var optionID = $style.data('js') || $style.data('option-name');  // used in tour js as selector
diff --git a/addons/web_editor/static/src/js/editor/snippets.options.js b/addons/web_editor/static/src/js/editor/snippets.options.js
index ffdc5463d7d6e0589732bc2e1a2da55f805d25b6..aa1fc34dae2c7f7acb80f50ea936943d9d054cea 100644
--- a/addons/web_editor/static/src/js/editor/snippets.options.js
+++ b/addons/web_editor/static/src/js/editor/snippets.options.js
@@ -3731,7 +3731,7 @@ registry.BackgroundToggler = SnippetOptionWidget.extend({
                 this.$target.prepend(bgFilterEl);
             }
         } else {
-            this.$target.find('.o_we_bg_filter').remove();
+            this.$target.find('> .o_we_bg_filter').remove();
         }
     },