diff --git a/addons/website/static/src/client_actions/website_preview/website_preview.scss b/addons/website/static/src/client_actions/website_preview/website_preview.scss index 3b420e2ab75c1ccd0620d631091775ca33815b25..4206ab5a923bf1ff99f817a562599d0f2f66cc88 100644 --- a/addons/website/static/src/client_actions/website_preview/website_preview.scss +++ b/addons/website/static/src/client_actions/website_preview/website_preview.scss @@ -89,6 +89,10 @@ header { } } +.editor_has_snippets_hide_backend_navbar header .o_main_navbar { + display: none !important; +} + .o_block_preview { z-index: $zindex-dropdown - 1 !important; } diff --git a/addons/website/static/src/js/editor/snippets.editor.js b/addons/website/static/src/js/editor/snippets.editor.js index b6bab39174e3d05d80efd4903c9cccd73514b674..6c4fde50b1654ddb8782e86eb9aa6d93226c613f 100644 --- a/addons/website/static/src/js/editor/snippets.editor.js +++ b/addons/website/static/src/js/editor/snippets.editor.js @@ -42,6 +42,16 @@ const wSnippetMenu = weSnippetEditor.SnippetsMenu.extend({ this._toggleAnimatedTextButton(); }; this.$body[0].addEventListener('selectionchange', this.__onSelectionChange); + + // editor_has_snippets is, amongst other things, in charge of hiding the + // backend navbar with a CSS animation. But we also need to make it + // display: none when the animation finishes for efficiency but also so + // that the tour tooltips pointing at the navbar disappear. This could + // rely on listening to the transitionend event but it seems more future + // proof to just add a delay after which the navbar is hidden. + this._hideBackendNavbarTimeout = setTimeout(() => { + this.el.ownerDocument.body.classList.add('editor_has_snippets_hide_backend_navbar'); + }, 500); }, /** * @override @@ -50,6 +60,8 @@ const wSnippetMenu = weSnippetEditor.SnippetsMenu.extend({ this._super(...arguments); this.$body[0].removeEventListener('selectionchange', this.__onSelectionChange); this.$body[0].classList.remove('o_animated_text_highlighted'); + clearTimeout(this._hideBackendNavbarTimeout); + this.el.ownerDocument.body.classList.remove('editor_has_snippets_hide_backend_navbar'); }, //--------------------------------------------------------------------------