mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
auto-book has variable number of columns based on the right pane width
This commit is contained in:
parent
1923bf7dda
commit
fafab95a07
@ -237,7 +237,22 @@ class NoteDetailBook {
|
||||
}
|
||||
|
||||
getDefaultZoomLevel() {
|
||||
return this.isAutoBook() ? 3 : 1;
|
||||
if (this.isAutoBook()) {
|
||||
const w = this.$component.width();
|
||||
|
||||
if (w <= 600) {
|
||||
return 1;
|
||||
} else if (w <= 900) {
|
||||
return 2;
|
||||
} else if (w <= 1300) {
|
||||
return 3;
|
||||
} else {
|
||||
return 4;
|
||||
}
|
||||
}
|
||||
else {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
getRenderingType(childNote) {
|
||||
|
@ -809,7 +809,8 @@ a.external:not(.no-arrow):after, a[href^="http://"]:not(.no-arrow):after, a[href
|
||||
border-radius: 10px;
|
||||
background-color: var(--accented-background-color);
|
||||
padding: 15px;
|
||||
margin: 10px;
|
||||
padding-bottom: 5px;
|
||||
margin: 5px;
|
||||
margin-left: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
|
Loading…
x
Reference in New Issue
Block a user