Skip to content

Commit

Permalink
fix: use OS theme (dark / light) background
Browse files Browse the repository at this point in the history
uses Django provided CSS variable "--body-bg"
  • Loading branch information
asfaltboy committed Oct 8, 2022
1 parent 5f56318 commit cc87719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions advanced_filters/static/advanced-filters/advanced-filters.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

.white-popup {
position: relative;
background: #FFF;
background: var(--body-bg, #FFF);
padding: 20px;
width: auto;
max-width: 800px;
Expand All @@ -70,4 +70,4 @@

.select2-container {
min-width: 166px;
}
}

0 comments on commit cc87719

Please sign in to comment.