nav-task-actions

This commit is contained in:
2026-03-04 17:27:27 +05:00
parent 5724d3c8d9
commit eb28a10c52
5 changed files with 229 additions and 1 deletions

View File

@@ -4898,4 +4898,55 @@ button.btn-primary {
.close:hover {
color: #e74c3c;
}
.task-actions-menu-container {
position: relative;
display: inline-block;
}
.task-actions-menu-btn {
background: linear-gradient(135deg, #6c757d, #5a6268);
color: white;
border: none;
border-radius: 5px;
padding: 6px 12px;
cursor: pointer;
font-size: 14px;
transition: background 0.2s;
}
.task-actions-menu-btn:hover {
background: linear-gradient(135deg, #5a6268, #495057);
}
.task-actions-dropdown {
position: absolute;
background: white;
border: 1px solid #dee2e6;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
z-index: 1000;
min-width: 200px;
max-width: 300px;
padding: 8px 0;
display: none;
}
.task-actions-dropdown .menu-item {
padding: 10px 16px;
cursor: pointer;
font-size: 14px;
color: #333;
transition: background 0.2s;
white-space: nowrap;
}
.task-actions-dropdown .menu-item:hover {
background-color: #f8f9fa;
}
.task-actions-dropdown .menu-item.disabled {
color: #aaa;
cursor: default;
pointer-events: none;
}