diff --git a/docs/guides_core-steps_copy-text-element.js.html b/docs/guides_core-steps_copy-text-element.js.html index 0db89cd..934edbf 100644 --- a/docs/guides_core-steps_copy-text-element.js.html +++ b/docs/guides_core-steps_copy-text-element.js.html @@ -135,7 +135,7 @@

guides/core-steps/copy-text-element.js

const copy = document.createElement('button'); const copyToInputQueryButtonClass = 'guide-copy-to-input-query-button'; - copy.className = `btn btn-sm btn-secondary ${copyToInputQueryButtonClass}`; + copy.className = `btn btn-sm btn-secondary editor-button ${copyToInputQueryButtonClass}`; copy.innerText = translate(this.translationBundle, COPY_TEXT); let stepHTMLElement; diff --git a/plugins/guides/core-steps/copy-text-element.js b/plugins/guides/core-steps/copy-text-element.js index fce9098..ffc6df7 100644 --- a/plugins/guides/core-steps/copy-text-element.js +++ b/plugins/guides/core-steps/copy-text-element.js @@ -44,7 +44,7 @@ const step = { const copy = document.createElement('button'); const copyToInputQueryButtonClass = 'guide-copy-to-input-query-button'; - copy.className = `btn btn-sm btn-secondary ${copyToInputQueryButtonClass}`; + copy.className = `btn btn-sm btn-secondary editor-button ${copyToInputQueryButtonClass}`; copy.innerText = translate(this.translationBundle, COPY_TEXT); let stepHTMLElement;