Skip to content

Commit cc87719

Browse files
committed
fix: use OS theme (dark / light) background
uses Django provided CSS variable "--body-bg"
1 parent 5f56318 commit cc87719

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

advanced_filters/static/advanced-filters/advanced-filters.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
.white-popup {
6060
position: relative;
61-
background: #FFF;
61+
background: var(--body-bg, #FFF);
6262
padding: 20px;
6363
width: auto;
6464
max-width: 800px;
@@ -70,4 +70,4 @@
7070

7171
.select2-container {
7272
min-width: 166px;
73-
}
73+
}

0 commit comments

Comments
 (0)