Changed some colours for tickets (light/dark mode)

This commit is contained in:
Corban-Lee Jones 2024-01-19 10:05:15 +00:00
parent 3d9da2d729
commit 06e00f3737

View File

@ -90,6 +90,10 @@ body {
cursor: pointer; cursor: pointer;
} }
.ticket-item.active {
background-color: var(--bs-tertiary-bg);
}
.ticket-item:hover { .ticket-item:hover {
background-color: var(--bs-tertiary-bg); background-color: var(--bs-tertiary-bg);
} }
@ -115,9 +119,21 @@ body {
white-space: nowrap; white-space: nowrap;
} }
.loading .email-list-item {
cursor: progress;
}
/* Ticket Content */ /* Ticket Content */
.ticket-content .ticket-content-title {
color: var(--bs-body-color);
}
.ticket-content .ticket-content-desc {
color: var(--bs-secondary-color);
}
.ticket-content .ticket-content-icon { .ticket-content .ticket-content-icon {
border-radius: 50%; border-radius: 50%;
width: 3rem; width: 3rem;
@ -126,6 +142,7 @@ body {
} }
.ticket-content .ticket-content.author { .ticket-content .ticket-content.author {
/* color: var(--bs-tertiary-color); */
margin-bottom: 5px; margin-bottom: 5px;
} }