Skip to content

Commit

Permalink
Fix search shadow in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
irskep committed Sep 9, 2024
1 parent ee2a206 commit 6985379
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion templates/html/static/dj-search.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

.DJSearchMenu_Content {
box-shadow: 2px 2px 8px 2px rgba(138, 138, 138, 0.39);
box-shadow: 2px 2px 8px 2px var(--c-shadow);
display: flex;
flex-direction: column;
align-items: center;
Expand Down
2 changes: 2 additions & 0 deletions templates/html/static/dj-variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
--c-gray3: #777;
--c-gray2: #555;
--c-gray1: #333;
--c-shadow: rgba(138, 138, 138, 0.39);

/* Accents */
--c-control-active: rgb(12, 34, 161);
Expand Down Expand Up @@ -122,6 +123,7 @@
--c-gray4: #777;
--c-gray5: #555;
--c-gray6: #333;
--c-shadow: rgba(26, 26, 26, 0.39);

/* Accents */
--c-control-active: lightblue;
Expand Down

0 comments on commit 6985379

Please sign in to comment.