Skip to content

Commit

Permalink
tweak plugin editor style
Browse files Browse the repository at this point in the history
  • Loading branch information
blurymind committed Aug 10, 2024
1 parent 99f980e commit 9c329cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/public/plugins/plugin-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,13 @@ export var PluginEditor = function ({
</div>
<div id="edit-plugin-mode" class="button-group-rounded">
<button onclick="app.plugins.${self.name
}.onSetPluginEditMode('edit')" id="edit-plugin-mode-edit">Edit</button>
}.onSetPluginEditMode('edit')" id="edit-plugin-mode-edit" style="width:90px;border-right: 1px solid #f0f8ff14;">Edit</button>
<button onclick="app.plugins.${self.name
}.onSetPluginEditMode('test')" id="edit-plugin-mode-test">Test</button>
}.onSetPluginEditMode('test')" id="edit-plugin-mode-test" style="width:90px;border-right: 1px solid #f0f8ff14">Test</button>
<button onclick="app.plugins.${self.name
}.onSetPluginEditMode('commit')" id="edit-plugin-mode-commit">Commit</button>
}.onSetPluginEditMode('commit')" id="edit-plugin-mode-commit" style="width:107px">Commit</button>
</div>
</div>
`.replaceAll('\n', ''),
Expand All @@ -219,7 +219,7 @@ export var PluginEditor = function ({
</div>
<div>
<iframe id="plugin-output-previewer" style="height: 70vh; width: 100%;">
<iframe id="plugin-output-previewer" style="height: 70vh; width: 100%; border: none;">
Write to previewer
</textarea>
</div>
Expand Down

0 comments on commit 9c329cd

Please sign in to comment.