diff options
| author | Cosmic Process <126974221+cosmicproc@users.noreply.github.com> | 2024-02-14 18:28:44 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-14 16:28:44 +0100 |
| commit | c783e7a3a0e411811aba83158d55e4f2f3091ac7 (patch) | |
| tree | 5569f1a007689b07d6cee00718abf81b83e9dbbf /django/views/templates/technical_500.html | |
| parent | e6fa74f02068b2c112de41e9c785f31041668a64 (diff) | |
Fixed #35195 -- Removed unnecessary type="text/css" attributes from <style> tags.
Diffstat (limited to 'django/views/templates/technical_500.html')
| -rw-r--r-- | django/views/templates/technical_500.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/templates/technical_500.html b/django/views/templates/technical_500.html index 305c4655ad..940beeeb85 100644 --- a/django/views/templates/technical_500.html +++ b/django/views/templates/technical_500.html @@ -5,7 +5,7 @@ <meta name="robots" content="NONE,NOARCHIVE"> <title>{% if exception_type %}{{ exception_type }}{% else %}Report{% endif %} {% if request %} at {{ request.path_info }}{% endif %}</title> - <style type="text/css"> + <style> html * { padding:0; margin:0; } body * { padding:10px 20px; } body * * { padding:0; } |
