update status's on tickets

This commit is contained in:
2026-01-08 13:02:52 -05:00
parent d6dae6825c
commit 1bd329ac1b
4 changed files with 177 additions and 15 deletions

View File

@@ -88,26 +88,26 @@
margin-left: 4px;
}
.status-Resolved {
.status-Pending {
background-color: transparent !important;
color: var(--status-open) !important;
color: var(--status-pending) !important;
padding: 8px 16px;
border-radius: 0 !important;
border: 2px solid var(--status-open) !important;
border: 2px solid var(--status-pending) !important;
font-weight: 500;
text-transform: uppercase;
font-size: 0.9em;
letter-spacing: 0.5px;
font-family: var(--font-mono);
text-shadow: 0 0 5px var(--status-open), 0 0 10px var(--status-open);
text-shadow: 0 0 5px var(--status-pending), 0 0 10px var(--status-pending);
}
.status-Resolved::before {
content: '[';
.status-Pending::before {
content: '[';
margin-right: 4px;
}
.status-Resolved::after {
.status-Pending::after {
content: ']';
margin-left: 4px;
}