🐛 Fix(custom): fix ui of task panel

This commit is contained in:
Kuingsmile
2026-01-16 12:59:04 +08:00
parent abbdf536a9
commit c7e34420d1
2 changed files with 2 additions and 7 deletions

View File

@@ -1480,7 +1480,7 @@ html, body {
max-height: 88vh; max-height: 88vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background: var(--color-surface); background: var(--color-background-tertiary);
box-shadow: box-shadow:
0 25px 50px -12px rgb(0 0 0 / 25%), 0 25px 50px -12px rgb(0 0 0 / 25%),
0 0 0 1px rgb(0 0 0 / 5%); 0 0 0 1px rgb(0 0 0 / 5%);
@@ -1503,7 +1503,6 @@ html, body {
gap: 1rem; gap: 1rem;
flex-wrap: wrap; flex-wrap: wrap;
padding: 1rem 1.25rem; padding: 1rem 1.25rem;
background: var(--color-surface);
border-bottom: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
} }
@@ -1598,7 +1597,6 @@ html, body {
/* Overall Progress - Enhanced */ /* Overall Progress - Enhanced */
.overall-progress { .overall-progress {
padding: 1.25rem 1.25rem 1rem; padding: 1.25rem 1.25rem 1rem;
background: var(--color-surface);
border-bottom: 1px solid var(--color-background-primary); border-bottom: 1px solid var(--color-background-primary);
} }
@@ -1661,7 +1659,6 @@ html, body {
/* Settings Panel - Enhanced */ /* Settings Panel - Enhanced */
.settings-panel { .settings-panel {
padding: 1rem 1.25rem 1.25rem; padding: 1rem 1.25rem 1.25rem;
background: var(--color-surface);
border-bottom: 1px solid var(--color-background-primary); border-bottom: 1px solid var(--color-background-primary);
scrollbar-color: var(--color-border-secondary) var(--color-surface); scrollbar-color: var(--color-border-secondary) var(--color-surface);
} }
@@ -1787,7 +1784,6 @@ html, body {
flex-direction: column; flex-direction: column;
gap: 1rem; gap: 1rem;
padding: 1.25rem; padding: 1.25rem;
background: var(--color-surface);
border-bottom: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
} }
@@ -1865,7 +1861,6 @@ html, body {
.task-list-container { .task-list-container {
flex: 1; flex: 1;
overflow-y: auto; overflow-y: auto;
background: var(--color-surface);
min-height: 300px; min-height: 300px;
} }

View File

@@ -32,7 +32,7 @@
align-items: center; align-items: center;
border-bottom: 1px solid var(--color-border-secondary); border-bottom: 1px solid var(--color-border-secondary);
padding: 1rem 1.25rem; padding: 1rem 1.25rem;
background: var(--color-background-secondary); background: var(--color-background-tertiary);
} }
.modal-title { .modal-title {