Skip to content

Commit

Permalink
Fix content colour in dark mode
Browse files Browse the repository at this point in the history
Previously, some content would appear in a dark colour in dark mode
because the "color" property was set in the .content class for light
mode but the <body> element for dark mode.
  • Loading branch information
karkhaz committed Mar 12, 2022
1 parent 099cfbf commit 18f22c4
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions templates/dashboard.jinja.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,6 @@
.status-icon-in-progress { fill: #ddd; }
.status-icon-in-progress circle { stroke: #ddd; }

.pipeline-header {
color: #eceff1;
}
.downloads-header {
color: #eceff1;
}
Expand All @@ -325,16 +322,12 @@
color: #eceff1;
}
.pipeline-row {
color: #eceff1;
background-color: #37474f;
}
body {
.content {
color: #babdbe;
background-color: #263238;
}
p {
color: #babdbe;
}
#subtitle {
color: #fff;
}
Expand Down

0 comments on commit 18f22c4

Please sign in to comment.