автор задачи для директора

This commit is contained in:
2026-02-02 22:46:48 +05:00
parent 77504d9130
commit 1b4b65cc37
2 changed files with 36 additions and 1 deletions

View File

@@ -2417,4 +2417,38 @@ small {
.time-btn i {
font-size: 16px;
}
/* Добавьте в конец style.css */
.task-card .task-meta {
padding: 10px 20px;
background: #f8f9fa;
border-top: 1px solid #e9ecef;
border-radius: 0 0 15px 15px;
margin-top: 0;
font-size: 0.85rem;
color: #6c757d;
transition: all 0.3s ease;
}
.task-card .task-content {
border-top: none;
margin-top: 0;
padding-top: 0;
}
.task-card.deleted .task-meta {
background: #f5c6cb;
color: #721c24;
}
.task-card.closed .task-meta {
background: #e9ecef;
color: #6c757d;
}
@media (max-width: 768px) {
.task-card .task-meta {
padding: 8px 15px;
font-size: 0.8rem;
}
}