Better ticket visuals

This commit is contained in:
2025-03-11 20:15:57 -04:00
parent 5ad3192747
commit d77bb3e164

View File

@ -31,6 +31,13 @@
margin-top: 10px; margin-top: 10px;
} }
.ticket-details {
margin-top: 30px;
padding: 20px;
background: var(--bg-primary);
border-radius: 8px;
}
.header-controls { .header-controls {
display: flex; display: flex;
gap: 15px; gap: 15px;
@ -82,7 +89,8 @@ h1 {
/* Form Elements */ /* Form Elements */
.detail-group { .detail-group {
margin-bottom: 20px; margin-bottom: 30px;
padding: 15px;
} }
.detail-group label { .detail-group label {
@ -107,6 +115,7 @@ h1 {
border-radius: 6px; border-radius: 6px;
background: var(--bg-primary); background: var(--bg-primary);
color: var(--text-primary); color: var(--text-primary);
transition: all 0.3s ease;
} }
input.editable { input.editable {
@ -136,6 +145,7 @@ textarea.editable {
font-weight: 500; font-weight: 500;
background: var(--bg-primary); background: var(--bg-primary);
color: var(--text-primary); color: var(--text-primary);
transition: all 0.3s ease;
} }
.btn.primary { .btn.primary {
@ -148,6 +158,11 @@ textarea.editable {
color: white; color: white;
} }
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Status and Priority Styles */ /* Status and Priority Styles */
.status-priority-row { .status-priority-row {
display: flex; display: flex;
@ -233,9 +248,10 @@ select[data-field="priority"] option[value="4"]:hover {
/* Comments Section */ /* Comments Section */
.comments-section { .comments-section {
margin-top: 30px; margin-top: 40px;
padding-top: 20px; padding: 25px;
border-top: 1px solid var(--border-color); background: var(--bg-secondary);
border-radius: 8px;
} }
.comment-form { .comment-form {
@ -255,9 +271,10 @@ select[data-field="priority"] option[value="4"]:hover {
.comment { .comment {
background: var(--bg-primary); background: var(--bg-primary);
padding: 15px; padding: 20px;
border-radius: 6px; border-radius: 8px;
margin-bottom: 10px; margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} }
.comment-header { .comment-header {
@ -296,12 +313,19 @@ select[data-field="priority"] option[value="4"]:hover {
} }
.tab-btn { .tab-btn {
padding: 10px 20px; padding: 12px 24px;
border: 1px solid var(--border-color); border: 1px solid var(--border-color);
background: var(--bg-secondary); background: var(--bg-secondary);
border-radius: 6px; border-radius: 6px;
cursor: pointer; cursor: pointer;
font-weight: 500; font-weight: 500;
font-size: 1.1em;
transition: all 0.3s ease;
}
.tab-btn:hover {
transform: translateY(-2px);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} }
.tab-btn.active { .tab-btn.active {