It should be possible to do this by styling .editor-status-bar
(which now contains the .tag-bar
) and .note-title-wrapper
.
Accessibility note: That these approaches only change where the tag bar is visually — it's still after the note editor in the focus order.
Moving the tag bar above the titlebar
.editor-status-bar { /* Tags + the focus mode indicator */
order: -1; /* Move the tag bar before everything else in its parent */
}
Moving the tag bar just below the titlebar
.note-title-wrapper {
order: -2;
}
.editor-status-bar {
order: -1;
}