Fixed ticket editing, and ticket overview size.

This commit is contained in:
2025-05-16 16:36:18 -04:00
parent 1fe7bc0f93
commit 5b50964d06
4 changed files with 58 additions and 15 deletions

View File

@ -1,6 +1,8 @@
/* Base Layout Components */
.ticket-container {
width: 90%;
height: auto !important;
min-height: 900px !important;
min-width: 800px;
max-width: 1800px;
margin: 40px auto;
@ -125,9 +127,18 @@ input.editable {
textarea.editable {
width: calc(100% - 20px);
min-height: 150px;
resize: vertical;
min-height: 800px !important;
height: auto !important; /* Allow it to grow with content */
box-sizing: border-box;
white-space: pre; /* Preserve formatting */
font-family: monospace; /* Better for ASCII art */
line-height: 1.2; /* Tighter line spacing for ASCII art */
}
#description-tab {
min-height: 850px !important; /* Slightly larger than the textarea */
height: auto !important;
padding-bottom: 20px; /* Add some padding at the bottom */
}
.editable:disabled {