Hello,
I'm trying to change the edit preview of a tiddler, so that the preview panel is shown under the edit textbox instead on the right side.
This should also only be the case, if the tiddler is tagged with "preview-down".
I'm unsing tiddlydrive v0.1.3 to display a wiki in a Google Drive and my theme is the Vanilla basic theme.
So far I created a tiddler named "show preview under editor" with the tag "$:/tags/Stylesheet" and the content:
[data-tags*="preview-down"] .tc-tiddler-preview-preview { float: unset; width: 99%; }
[data-tags*="preview-down"] .tc-tiddler-frame .tc-tiddler-preview .tc-edit-texteditor { width: 99%; }
[data-tags*="preview-down"] .tc-tiddler-frame .tc-tiddler-preview canvas.tc-edit-bitmapeditor { max-width: 99%; }
It works except for one thing. The edit textbox is not stretched to 99%.
If I inspect the CSS, it still shows, that it's using the old definition with 49%.
If I overwrite it in the inspector manually, it also works, but it doesn't seem to pick up the definition from the custom stylesheet.
How can I show the editor with full width?