This commit is contained in:
2025-12-14 14:22:26 +05:00
parent 145d12f130
commit 7f5f30228e
7 changed files with 1372 additions and 3 deletions

View File

@@ -1022,4 +1022,255 @@ button.reopen-btn:hover {
/* В существующие стили добавляем */
.show-deleted-label[style*="display: none"] {
display: none !important;
}
.deadline-badge {
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
margin-left: 10px;
font-weight: 600;
}
.deadline-48h {
background: linear-gradient(135deg, #ffc107, #e0a800);
color: #856404;
}
.deadline-24h {
background: linear-gradient(135deg, #fd7e14, #e8590c);
color: white;
}
.deadline-indicator {
padding: 2px 8px;
border-radius: 12px;
font-size: 0.7rem;
margin-left: 8px;
font-weight: 600;
}
.task-title .deadline-badge {
vertical-align: middle;
}
.filter-group select {
min-width: 150px;
}
.filters {
gap: 15px;
margin-bottom: 15px;
}
@media (max-width: 768px) {
.filters {
flex-direction: column;
gap: 10px;
}
.filter-group select {
width: 100%;
}
}
/* Админ-стили */
.admin-container {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
display: none;
}
.admin-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 2px solid #e9ecef;
}
.admin-tabs {
display: flex;
gap: 10px;
margin-bottom: 20px;
border-bottom: 2px solid #e9ecef;
padding-bottom: 10px;
}
.admin-tab {
padding: 10px 20px;
background: #f8f9fa;
border: none;
border-radius: 8px 8px 0 0;
cursor: pointer;
font-weight: 600;
color: #495057;
transition: all 0.3s ease;
}
.admin-tab:hover {
background: #e9ecef;
}
.admin-tab.active {
background: #3498db;
color: white;
}
.admin-section {
display: none;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.admin-section.active {
display: block;
animation: fadeIn 0.3s ease;
}
.users-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.users-table th,
.users-table td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #e9ecef;
}
.users-table th {
background: #f8f9fa;
font-weight: 600;
color: #495057;
}
.users-table tr:hover {
background: #f8f9fa;
}
.user-actions {
display: flex;
gap: 8px;
}
.user-actions button {
padding: 6px 12px;
font-size: 0.85rem;
border-radius: 6px;
}
.ldap-badge {
background: #3498db;
color: white;
padding: 3px 8px;
border-radius: 12px;
font-size: 0.75rem;
margin-left: 5px;
}
.admin-badge {
background: #e74c3c;
color: white;
padding: 3px 8px;
border-radius: 12px;
font-size: 0.75rem;
margin-left: 5px;
}
.form-row {
display: flex;
gap: 20px;
margin-bottom: 20px;
}
.form-row .form-group {
flex: 1;
}
.password-fields {
background: #f8f9fa;
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
border-left: 4px solid #3498db;
}
.modal-lg {
max-width: 800px;
}
.search-container {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.search-container input {
flex: 1;
}
.stats-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.stat-card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border-left: 4px solid #3498db;
}
.stat-card h3 {
margin: 0 0 10px 0;
color: #495057;
font-size: 1.1rem;
}
.stat-value {
font-size: 2rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 10px;
}
.stat-desc {
color: #6c757d;
font-size: 0.9rem;
}
.stat-card.admin-stat {
border-left-color: #e74c3c;
}
.stat-card.ldap-stat {
border-left-color: #2ecc71;
}
.stat-card.local-stat {
border-left-color: #f39c12;
}
/* Анимация появления */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.error {
background: linear-gradient(135deg, #f8d7da, #f5c6cb);
color: #721c24;
padding: 15px 20px;
border-radius: 10px;
margin: 15px 0;
border: 1px solid #f5c6cb;
border-left: 5px solid #e74c3c;
text-align: center;
}