diff --git a/src/becca/entities/note.js b/src/becca/entities/note.js index bf2df98f7..a64e6f672 100644 --- a/src/becca/entities/note.js +++ b/src/becca/entities/note.js @@ -866,6 +866,11 @@ class Note extends AbstractEntity { } function addSubtreeNotesInner(note, parentNote = null) { + // share can be removed after 0.57 since it will be put under hidden + if (note.noteId === 'hidden' || note.noteId === 'share') { + return; + } + if (parentNote) { // this needs to happen first before noteSet check to include all clone relationships relationships.push({ diff --git a/src/public/app/layouts/desktop_layout.js b/src/public/app/layouts/desktop_layout.js index c39e02b9a..510bbf9ab 100644 --- a/src/public/app/layouts/desktop_layout.js +++ b/src/public/app/layouts/desktop_layout.js @@ -149,6 +149,7 @@ export default class DesktopLayout { new NoteWrapperWidget() .child(new FlexContainer('row').class('title-row') .css("height", "50px") + .css("min-height", "50px") .css('align-items', "center") .cssBlock('.title-row > * { margin: 5px; }') .child(new NoteIconWidget()) diff --git a/src/public/app/widgets/ribbon_widgets/note_map.js b/src/public/app/widgets/ribbon_widgets/note_map.js index d43630e24..f88484291 100644 --- a/src/public/app/widgets/ribbon_widgets/note_map.js +++ b/src/public/app/widgets/ribbon_widgets/note_map.js @@ -16,7 +16,6 @@ const TPL = ` position: absolute; right: 5px; bottom: 5px; - font-size: 180%; z-index: 1000; }