- Specialist Tuning now in a separate editor

- typeBadge formatter completed
This commit is contained in:
Josako
2025-11-24 15:54:47 +01:00
parent 95c8282eb8
commit 3815399a7e
10 changed files with 1132 additions and 378 deletions

View File

@@ -0,0 +1,30 @@
/* Content Viewer specific styles */
/* Ensure markdown text aligns left by default */
#content-document-viewer .markdown-body,
.markdown-body {
text-align: left;
}
/* Make the viewer pane scrollable with a responsive max height */
#content-document-viewer {
max-height: 60vh;
overflow: auto;
}
/* Optional readability improvements */
#content-document-viewer .markdown-body {
line-height: 1.6;
}
#content-document-viewer .markdown-body pre,
#content-document-viewer .markdown-body code {
white-space: pre-wrap;
}
/* Keep the viewer header visible while scrolling */
#content-viewer-section .card-header {
position: sticky;
top: 0;
z-index: 1;
background: var(--bs-body-bg, #fff);
}