We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should I override
django-jsoneditor/jsoneditor/static/django-jsoneditor/django-jsoneditor.css
Line 3 in 6150a3d
The text was updated successfully, but these errors were encountered:
You can override static files using a common project-wide static folder as described in the Django documentation.
Sorry, something went wrong.
I've done it that way but I am not sure whether it is necessary to extend JSONEditro.
class CustomJSONEditor(JSONEditor): class Media: css = {"all": ("my_jsoneditor/my_django_jsoneditor.css",)}
where my_django_jsoneditor.css contains
div div .outer_jsoneditor { width: 610px; }
Maybe with project-wide static folder there is no need to extend JSONEditor. I will check it. Thanks for your answer.
No branches or pull requests
Should I override
django-jsoneditor/jsoneditor/static/django-jsoneditor/django-jsoneditor.css
Line 3 in 6150a3d
The text was updated successfully, but these errors were encountered: