This commit is contained in:
zadam 2021-05-23 22:24:04 +02:00
parent 85933771f8
commit 30cc566518
5 changed files with 4 additions and 6 deletions

View File

@ -194,8 +194,6 @@ export default class DesktopLayout {
.overflowing() .overflowing()
.child(new NoteIconWidget()) .child(new NoteIconWidget())
.child(new NoteTitleWidget()) .child(new NoteTitleWidget())
.child(new NotePathsWidget().hideInZenMode())
.child(new NoteTypeWidget().hideInZenMode())
.child(new NoteActionsWidget().hideInZenMode()) .child(new NoteActionsWidget().hideInZenMode())
.child(new ButtonWidget() .child(new ButtonWidget()
.icon("bx-window-open bx-rotate-90") .icon("bx-window-open bx-rotate-90")
@ -223,7 +221,6 @@ export default class DesktopLayout {
.child(new SearchResultWidget()) .child(new SearchResultWidget())
.child(new SqlResultWidget()) .child(new SqlResultWidget())
) )
.child(new SimilarNotesWidget())
.child(...this.customWidgets.get('center-pane')) .child(...this.customWidgets.get('center-pane'))
) )
) )

View File

@ -28,7 +28,7 @@ const TPL = `
} }
</style> </style>
<div class="dropdown global-menu"> <div class="dropdown global-menu dropright">
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn btn-sm bx bx-menu" title="Menu"></button> <button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn btn-sm bx bx-menu" title="Menu"></button>
<div class="dropdown-menu dropdown-menu-right"> <div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item options-button" data-trigger-command="showOptions"> <a class="dropdown-item options-button" data-trigger-command="showOptions">

View File

@ -135,6 +135,7 @@ const TAB_ROW_TPL = `
.note-tab-row .note-tab[active] .note-tab-wrapper { .note-tab-row .note-tab[active] .note-tab-wrapper {
font-weight: bold; font-weight: bold;
background-color : var(--active-item-background-color);
} }
.note-tab-row .note-tab[is-mini] .note-tab-wrapper { .note-tab-row .note-tab[is-mini] .note-tab-wrapper {

View File

@ -32,7 +32,7 @@ const TPL = `
<style> <style>
.note-detail-editable-text { .note-detail-editable-text {
font-family: var(--detail-text-font-family); font-family: var(--detail-text-font-family);
padding-left: 12px; padding-left: 14px;
padding-top: 10px; padding-top: 10px;
} }

View File

@ -21,7 +21,7 @@ const TPL = `
body.heading-style-markdown .note-detail-readonly-text h6::before { content: "######\\2004"; color: var(--muted-text-color); } body.heading-style-markdown .note-detail-readonly-text h6::before { content: "######\\2004"; color: var(--muted-text-color); }
.note-detail-readonly-text { .note-detail-readonly-text {
padding-left: 22px; padding-left: 24px;
padding-top: 10px; padding-top: 10px;
font-family: var(--detail-text-font-family); font-family: var(--detail-text-font-family);
position: relative; position: relative;