Fixed ticket editing, and ticket overview size.
This commit is contained in:
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user