4.2.0: Драфты задач и автовыполнение
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m29s

This commit is contained in:
poignatov
2026-01-28 20:19:53 +03:00
parent a886cf13e8
commit ba0f34c91b
10 changed files with 1275 additions and 376 deletions

View File

@@ -317,3 +317,77 @@
text-decoration: none;
}
/* Dropdown styles */
.dropdown-container {
position: relative;
display: inline-block;
}
.dropdown-button {
padding: 0;
background: transparent;
color: #6366f1;
border: 2px solid #6366f1;
border-radius: 0.375rem;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
width: calc(0.75rem * 2 + 1.2rem + 4px);
height: calc(0.75rem * 2 + 1.2rem + 4px);
box-sizing: border-box;
}
.dropdown-button:hover:not(:disabled) {
transform: translateY(-1px);
background: rgba(99, 102, 241, 0.1);
box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}
.dropdown-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.dropdown-menu {
position: fixed;
background: white;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
min-width: 240px;
z-index: 1800;
overflow: hidden;
}
.dropdown-item {
width: 100%;
padding: 0.5rem 1rem;
background: none;
border: none;
text-align: left;
font-size: 0.95rem;
color: #374151;
cursor: pointer;
transition: background-color 0.2s;
display: flex;
align-items: center;
border-bottom: 1px solid #f3f4f6;
}
.dropdown-item:last-child {
border-bottom: none;
}
.dropdown-item:hover:not(:disabled) {
background-color: #f9fafb;
color: #1f2937;
}
.dropdown-item:disabled {
opacity: 0.5;
cursor: not-allowed;
}