Hi,
I dont want to accidentality toggle editors and loose any incompatible edits
Before I used the below in my userchrome.css (thanks to @dpoulton) , but that hides the plugin buttons too.
div.editor-toolbar div button {
/* removes the WYSIWYG button */
display: none !important;
}
The css in the app has changed a bit since that post you quoted. I use just the Markdown editor and added the below to my userchrome.css file to hide the editor toggle button.
div.editor-toolbar .markdown-active {
/* removes the MARKDOWN/RICH TEXT button */
display: none !important;
}