Skip to content

Commit 7384638

Browse files
committed
dark theme support
1 parent c903627 commit 7384638

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

public/css/all.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/style.css

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4089,10 +4089,10 @@ textarea::selection {
40894089
position: sticky;
40904090
top: 0;
40914091
z-index: 4;
4092-
background: var(--paper-bg, #faf8f3);
4092+
background: var(--canvas-bg-color);
40934093
padding: 6px 0;
40944094
border-bottom: 1px solid var(--border-soft, var(--border-color));
4095-
box-shadow: 0 1px 0 var(--paper-bg, #faf8f3); /* paint over content peeking under bottom border on Safari */
4095+
box-shadow: 0 1px 0 var(--canvas-bg-color);
40964096
}
40974097
@media (max-width: 900px) {
40984098
.admin-filter-toolbar { position: static; box-shadow: none; }
@@ -4243,14 +4243,20 @@ textarea::selection {
42434243
color: var(--color);
42444244
}
42454245
.admin-summary .summary-pill.active {
4246-
background: var(--color);
4247-
color: var(--paper-bg, #fff);
4248-
border-color: var(--color);
4246+
background: var(--primary-bg);
4247+
color: var(--primary-color);
4248+
border-color: var(--primary-bg);
42494249
}
42504250
.admin-summary .summary-pill.active .count { color: inherit; }
42514251
.admin-summary .summary-pill.error .count { color: #B42318; }
42524252
.admin-summary .summary-pill.warn .count { color: #C48A2E; }
42534253
.admin-summary .summary-pill.ok .count { color: #2F7A44; }
4254+
.dark-mode .admin-summary .summary-pill.error .count { color: #F08A82; }
4255+
.dark-mode .admin-summary .summary-pill.warn .count { color: #E8B970; }
4256+
.dark-mode .admin-summary .summary-pill.ok .count { color: #7DC894; }
4257+
.dark-mode .queue-state-pills .pill-active { color: #E8B970; border-color: rgba(232,185,112,0.4); }
4258+
.dark-mode .queue-state-pills .pill-failed { color: #F08A82; border-color: rgba(240,138,130,0.4); }
4259+
.dark-mode .queue-state-pills .pill-completed { color: #7DC894; border-color: rgba(125,200,148,0.3); }
42544260

42554261
.job-progress {
42564262
flex: 1;

0 commit comments

Comments
 (0)