Skip to content

Commit

Permalink
Uploaded correct files.
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparschott committed Mar 20, 2024
1 parent add0fa5 commit fdc0bb2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,13 +265,13 @@ console.log(this.app.workspace.getLeavesOfType('file-explorer')[0].view.fileItem
.setIcon('book-down')
.setSection('pane')
.setSubmenu().addItem((item2) => {
item2.setTitle('Open folder in left split')
item2.setTitle('Open folder in split left')
.onClick(async () => {
openFolderInContinuousMode(file,'left');
})
})
.addItem((item3) => {
item3.setTitle('Open folder in right split')
item3.setTitle('Open folder in split right')
.onClick(async () => {
openFolderInContinuousMode(file,'right');
})
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "continuous-mode",
"name": "Continuous Mode",
"version": "1.2.0",
"version": "1.2.1",
"minAppVersion": "0.15.0",
"description": "Displays all open notes in a tab group as if they were a continuous scrollable document (sometimes called \"Scrivenings mode\"). Features include arrow navigation between notes and the ability to reorder notes via tab header drag-and-drop.",
"author": "Michael Schrauzer",
Expand Down
16 changes: 16 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,19 @@
.workspace.mod-root.workspace-tab-header {
min-width:100px;
}
/*
.workspace-tab-header-container-inner {
flex-direction:column;
}
.workspace-tab-header-container-inner:has(.workspace-tab-header:hover) {
overflow:auto;
position:absolute;
z-index:10;
background:var(--titlebar-background-focused)
}
.workspace .mod-root .workspace-tab-header {
width:auto;
max-width:100%;
padding:6px 3px 6px 6px !important;
}
*/

0 comments on commit fdc0bb2

Please sign in to comment.