jmrivas86 / django-json-widget

An alternative widget that makes it easy to edit the new Django's field JSONField (PostgreSQL specific model fields)
MIT License
433 stars 88 forks source link

Declare support for Django 3.2 and Python 3.9 #56

Closed D3X closed 11 months ago

GregKaleka commented 2 years ago

Would be good to add a media query to support dark mode. Something like this:

@media (prefers-color-scheme: dark) {
  div.jsoneditor-field, div.jsoneditor-readonly, div.jsoneditor-value {
    color: #ddd!important;
  }
}