Skip to content

Commit

Permalink
[ISSUE-10] - fix dark-mode text color (#11)
Browse files Browse the repository at this point in the history
closes #10
  • Loading branch information
vigo committed Sep 6, 2024
1 parent 2b9cd82 commit cc9df10
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

**2024-09-06**

- Fix dark-mode text color.

---

**2024-08-25**

- Fix extend media in DALFModelAdmin without overriding default assets - [Bahattin][bahattincinic]
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,15 @@ rake upload:test # Upload package to test distro

## Change Log

**2024-09-06**

- Fix dark-mode text color.

---

**2024-08-25**

- Fix extend media in DALFModelAdmin without overriding default assets - [Bahattin][bahattincinic]
- Fix extend media in `DALFModelAdmin` without overriding default assets - [Bahattin][bahattincinic]

---

Expand Down
4 changes: 4 additions & 0 deletions src/dalf/static/admin/css/django_admin_list_filter.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ select.django-admin-list-filter,
select.django-admin-list-filter-ajax {
width: 100%;
}

html[data-theme="dark"] ul.select2-results__options {
color: var(--primary);
}

0 comments on commit cc9df10

Please sign in to comment.