доработка

This commit is contained in:
2026-02-12 19:14:23 +05:00
parent 30dc1a7053
commit 139b53ffbd
4 changed files with 284 additions and 9 deletions

View File

@@ -4134,4 +4134,45 @@ button.btn-primary {
opacity: 0.3;
pointer-events: none;
user-select: none;
}
/* Стили для модального окна доработки */
#rework-assignment-modal .modal-content {
max-width: 550px;
border-radius: 8px;
}
#rework-assignment-modal textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
resize: vertical;
font-family: inherit;
font-size: 14px;
}
#rework-assignment-modal textarea:focus {
border-color: #f39c12;
outline: none;
box-shadow: 0 0 5px rgba(243, 156, 18, 0.3);
}
#rework-assignment-modal .btn-warning {
background-color: #f39c12;
color: white;
border: none;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
#rework-assignment-modal .btn-warning:hover {
background-color: #e67e22;
}
#rework-assignment-modal .btn-warning:disabled {
background-color: #f1c40f;
cursor: not-allowed;
opacity: 0.7;
}