add appeal table

This commit is contained in:
smanylov
2026-05-27 14:20:00 +07:00
parent e4508cb788
commit d7521e6ad1
8 changed files with 802 additions and 6 deletions
+34 -1
View File
@@ -18,7 +18,8 @@
&__info-section,
&__status-section,
&__status-change-section {
&__status-change-section,
&__comment-section {
border-bottom: 1px solid #e5e7eb;
padding-bottom: 0.75rem;
}
@@ -92,6 +93,38 @@
background-color: #93c5fd;
}
}
&__comment-label {
margin-bottom: 0.5rem;
}
&__comment-textarea {
width: 100%;
padding: 0.5rem;
border: 1px solid #e5e7eb;
border-radius: 0.25rem;
font-size: 0.875rem;
font-family: inherit;
color: #111827;
background-color: #ffffff;
resize: vertical;
transition: all 0.2s;
&:focus {
outline: none;
border-color: #3b82f6;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}
&::placeholder {
color: #9ca3af;
}
&:disabled {
background-color: #f3f4f6;
cursor: not-allowed;
}
}
}
.status-badge {