Dimension des zones editeur

amélioration des zones de saisie des éditeurs (journaux, ...)
This commit is contained in:
2025-12-05 20:33:35 +01:00
parent 05036877ed
commit 46d09c7bd9
3 changed files with 29 additions and 16 deletions

View File

@@ -719,14 +719,20 @@
}
.app.sheet .editor.prosemirror {
height: fit-content;
min-height: 5rem;
}
.app.sheet .editor.prosemirror .editor-container {
min-height: 5rem;
height: 8rem;
margin: 0;
flex: none;
min-height: 6rem;
.editor-container {
min-height: 6rem;
height: calc(100% - 3rem);
margin: 0;
flex: none;
}
}
.app.sheet.journal-entry-page .editor.prosemirror{
height: 100%;
.editor-container {
height: calc(100% - 6rem);
}
}
.large-editor {
border: 2;
@@ -738,20 +744,20 @@
.editor {
border: 2;
height: fit-content;
min-height: 5rem;
min-height: 6rem;
padding: 0 3px;
}
.medium-editor {
border: 2;
min-height: 8rem;
min-height: 9rem;
padding: 0 3px;
align-items: top;
}
.small-editor {
border: 2;
min-height: 2rem;
min-height: 4rem;
padding: 0 3px;
}