Move Search Dialog to Bottom

What is the appropriate setting to move the Dialog to the bottom?

Which dialog? The code that creates the dialog can choose where to display it (and may or may not be configurable to adjust that).

Sorry… I should have said search with dialog (search.js + searchcursor.js + dialog.js). At the moment, the search dialog appears on top but the code & CSS shows that is can also be at the bottom of the editor.

How to set it to appear at the bottom?

There doesn’t appear to be a way to configure that in the current code (the code in addon/search/search.js isn’t passing a bottom option when calling openDialog at all).

I see… well as a work around, I can overrides its CSS but a control system would have been good.

.CodeMirror-dialog-top {
  border-bottom: 0;
  top: auto;
  border-top: 1px solid #eee;
  bottom: 0;
}