nav-task-actions
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user