mirror of
https://github.com/zadam/trilium.git
synced 2025-12-16 04:14:26 +01:00
feat(status_bar): relocate to outside split area
This commit is contained in:
parent
2d3776cd5f
commit
d2b32ff5af
@ -177,10 +177,10 @@ export default class DesktopLayout {
|
|||||||
...this.customWidgets.get("node-detail-pane"), // typo, let's keep it for a while as BC
|
...this.customWidgets.get("node-detail-pane"), // typo, let's keep it for a while as BC
|
||||||
...this.customWidgets.get("note-detail-pane")
|
...this.customWidgets.get("note-detail-pane")
|
||||||
)
|
)
|
||||||
.optChild(isNewLayout, <StatusBar />)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.child(...this.customWidgets.get("center-pane"))
|
.child(...this.customWidgets.get("center-pane"))
|
||||||
|
|
||||||
)
|
)
|
||||||
.child(
|
.child(
|
||||||
new RightPaneContainer()
|
new RightPaneContainer()
|
||||||
@ -189,8 +189,10 @@ export default class DesktopLayout {
|
|||||||
.child(...this.customWidgets.get("right-pane"))
|
.child(...this.customWidgets.get("right-pane"))
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
.optChild(!launcherPaneIsHorizontal && isNewLayout, <StatusBar />)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
.optChild(launcherPaneIsHorizontal && isNewLayout, <StatusBar />)
|
||||||
.child(<CloseZenModeButton />)
|
.child(<CloseZenModeButton />)
|
||||||
|
|
||||||
// Desktop-specific dialogs.
|
// Desktop-specific dialogs.
|
||||||
|
|||||||
@ -5,6 +5,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-inline: 0.25em;
|
padding-inline: 0.25em;
|
||||||
|
min-height: 32px;
|
||||||
|
|
||||||
> .breadcrumb-row {
|
> .breadcrumb-row {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user