feature: Tasks tab added for lab organizations. tasks now can be assigned and their status can be updated by the assignee.

This commit is contained in:
2026-06-28 22:56:56 +03:30
parent feb0b26ad0
commit 2a48946a51
29 changed files with 851 additions and 43 deletions

View File

@@ -247,6 +247,24 @@ body {
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
select.form-select,
select {
color: var(--color-text-primary);
background-color: var(--color-background-card);
}
select option {
color: var(--color-text-primary);
background-color: var(--color-background-secondary);
}
:root[data-theme='dark'] select.form-select,
:root[data-theme='dark'] select,
:root:not([data-theme='light']) select.form-select,
:root:not([data-theme='light']) select {
color-scheme: dark;
}
.surface-card {
background: color-mix(in srgb, var(--color-card-background) 92%, transparent);
border: 1px solid var(--color-card-border);