Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/public/app/widgets/note_detail.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const TPL = `
}

.note-detail.full-height {
height: 100%;
height: calc(100% - 3em);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is too general since it affects also non-script type notes.

}
</style>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/public/app/widgets/type_widgets/editable_code.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ const TPL = `
min-height: 50px;
height: 100%;
}

</style>

<div class="note-detail-code-editor"></div>

<div style="display: flex; justify-content: space-evenly;">
<div style="display: flex; justify-content: space-evenly; position: sticky; bottom: 0px; padding-top: 5px">
<button data-trigger-command="runActiveNote"
class="no-print execute-button btn btn-sm">
Execute <kbd data-command="runActiveNote"></kbd>
Expand Down