Added discord webhooks, better filtering, and automated ticket creation

This commit is contained in:
2024-12-02 21:21:10 -05:00
parent 67c0c68f6c
commit 5120afddf5
4 changed files with 178 additions and 31 deletions

View File

@ -139,6 +139,61 @@ body {
background: rgba(239, 68, 68, 0.1);
}
.status-dropdown {
position: relative;
display: inline-block;
margin-right: 15px;
}
.dropdown-header {
padding: 8px 15px;
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 4px;
cursor: pointer;
min-width: 120px;
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
background: var(--bg-secondary);
min-width: 160px;
box-shadow: var(--shadow);
border-radius: 4px;
padding: 10px;
z-index: 100;
border: 1px solid var(--border-color);
}
.status-dropdown.active .dropdown-content {
display: block;
}
.dropdown-content label {
display: block;
padding: 8px;
cursor: pointer;
transition: background 0.2s;
}
.dropdown-content label:hover {
background: var(--hover-bg);
}
.dropdown-content .save-filter {
margin-top: 10px;
width: 100%;
padding: 8px;
background: #3b82f6;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
/*UNCHECKED BELOW*/
body.menu-open {