2025-09-20 11:29:28 +03:00
|
|
|
.component.note-detail {
|
2025-11-09 12:08:50 +02:00
|
|
|
max-width: var(--max-content-width); /* Inherited from .note-split */
|
2025-09-19 21:40:35 +03:00
|
|
|
font-family: var(--detail-font-family);
|
|
|
|
|
font-size: var(--detail-font-size);
|
2025-09-20 11:29:28 +03:00
|
|
|
contain: none;
|
2026-02-04 16:46:22 +02:00
|
|
|
|
|
|
|
|
&.fixed-tree {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
.fixed-note-tree-container {
|
|
|
|
|
height: 60%;
|
|
|
|
|
border-bottom: 1px solid var(--main-border-color);
|
2026-02-04 18:53:32 +02:00
|
|
|
overflow: auto;
|
2026-02-04 16:46:22 +02:00
|
|
|
|
|
|
|
|
.tree-wrapper {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tree {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-19 21:40:35 +03:00
|
|
|
}
|
|
|
|
|
|
2025-11-09 12:08:50 +02:00
|
|
|
body.prefers-centered-content .note-detail {
|
|
|
|
|
/* Horizontally center the widget in its parent when the "Keep content centered" option is on */
|
|
|
|
|
margin-inline: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-20 11:29:28 +03:00
|
|
|
.note-detail > * {
|
|
|
|
|
contain: none;
|
2026-02-04 16:46:22 +02:00
|
|
|
}
|