mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	auto-book has variable number of columns based on the right pane width
This commit is contained in:
		| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user