Skip to content

Commit cc9df10

Browse files
authored
[ISSUE-10] - fix dark-mode text color (#11)
closes #10
1 parent 2b9cd82 commit cc9df10

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
**2024-09-06**
4+
5+
- Fix dark-mode text color.
6+
7+
---
8+
39
**2024-08-25**
410

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

Diff for: README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,15 @@ rake upload:test # Upload package to test distro
275275

276276
## Change Log
277277

278+
**2024-09-06**
279+
280+
- Fix dark-mode text color.
281+
282+
---
283+
278284
**2024-08-25**
279285

280-
- Fix extend media in DALFModelAdmin without overriding default assets - [Bahattin][bahattincinic]
286+
- Fix extend media in `DALFModelAdmin` without overriding default assets - [Bahattin][bahattincinic]
281287

282288
---
283289

Diff for: src/dalf/static/admin/css/django_admin_list_filter.css

+4
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ select.django-admin-list-filter,
22
select.django-admin-list-filter-ajax {
33
width: 100%;
44
}
5+
6+
html[data-theme="dark"] ul.select2-results__options {
7+
color: var(--primary);
8+
}

0 commit comments

Comments
 (0)